From 6633aeef0a879b6c8100ff83307882a31f09b7fc Mon Sep 17 00:00:00 2001 From: Patrick Brady Date: Wed, 6 Dec 2017 10:12:48 -0800 Subject: Fix docker versioning 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 Issue-ID: CIMAN-120 --- installation/appc/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']; -- cgit 1.2.3-korg