aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2017-12-06 10:12:48 -0800
committerPatrick Brady <pb071s@att.com>2017-12-06 10:12:59 -0800
commit6633aeef0a879b6c8100ff83307882a31f09b7fc (patch)
tree8aee21a00509dac1d8a4906358051ec5675fa86a
parentefc8ecc72f7069e2c8969eff5b6cc60b125905f2 (diff)
Fix docker versioningamsterdam
The docker tag script was modifed improperly causing the docker versioning to break. Reverting part of "Bump Patch Version" commit c9d8b5dd1a423bfdb87c7901209a84d93f33684d in order to fix. Change-Id: I10c75dbc8344ae1fc3d387c4eedadfb256ea6b57 Signed-off-by: Patrick Brady <pb071s@att.com> Issue-ID: CIMAN-120
-rw-r--r--installation/appc/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/installation/appc/pom.xml b/installation/appc/pom.xml
index c1885a1..5f2aa83 100644
--- a/installation/appc/pom.xml
+++ b/installation/appc/pom.xml
@@ -214,7 +214,7 @@
if ( project.properties['ver'] != null ) {
versionArray = project.properties['ver'].split('\\.');
}
- if ( project.properties['ver'].endsWith("-amsterdam") ) {
+ if ( project.properties['ver'].endsWith("-SNAPSHOT") ) {
project.properties['dockertag1']=project.properties['ver'] + "-latest";
project.properties['dockertag2']="latest";
project.properties['appc.version']=project.properties['appc.snapshot.version'];