diff options
author | Jo-Philipp Wich <jo@mein.io> | 2016-12-02 22:11:40 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2016-12-14 18:43:49 +0100 |
commit | a4232cd4bfa9d244a0b763742564f22d15264839 (patch) | |
tree | 57dd510e6f22b1930cc1a67006b77806d5c13ddc /package | |
parent | 98b14e0906cfe476da7a007cbf467b73b4c85acf (diff) | |
download | upstream-a4232cd4bfa9d244a0b763742564f22d15264839.tar.gz upstream-a4232cd4bfa9d244a0b763742564f22d15264839.tar.bz2 upstream-a4232cd4bfa9d244a0b763742564f22d15264839.zip |
build: use SNAPSHOT instead of CURRENT to designate untagged branch builds
Calling a build ##.##-CURRENT might mislead users into thinking that this
build is the most current release of a branch.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/image-config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/base-files/image-config.in b/package/base-files/image-config.in index b18f2d85b1..a8d82d3e0c 100644 --- a/package/base-files/image-config.in +++ b/package/base-files/image-config.in @@ -175,8 +175,8 @@ if VERSIONOPT prompt "Release version number" help This is the release version number embedded in the image. - If unspecified, it defaults to CURRENT for the master branch - or to ##.##-CURRENT on release branches. + If unspecified, it defaults to SNAPSHOT for the master branch + or to ##.##-SNAPSHOT on release branches. config VERSION_CODE string @@ -195,8 +195,8 @@ if VERSIONOPT This is the repository address embedded in the image, it defaults to the trunk snapshot repo; the url may contain the following placeholders: %R .. Repository revision ID - %V .. Configured release version number or "CURRENT", uppercase - %v .. Configured release version number or "current", lowercase + %V .. Configured release version number or "SNAPSHOT", uppercase + %v .. Configured release version number or "snapshot", lowercase %C .. Configured release revision code or value of %R, uppercase %c .. Configured release revision code or value of %R, lowercase %N .. Release name, uppercase |