Keep cdt artifact download in folder 97/57597/1
authorPatrick Brady <pb071s@att.com>
Wed, 25 Jul 2018 19:56:09 +0000 (12:56 -0700)
committerPatrick Brady <pb071s@att.com>
Wed, 25 Jul 2018 19:56:13 +0000 (12:56 -0700)
Create a folder in /tmp to keep each version of cdt by itself.

Clear this folder before build so that only the newest version
will be unzipped and put into the docker image.

Change-Id: I9c42699f6de2db04d06316358dbe2bca04346eec
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-1109

cdt/src/main/scripts/installZips.sh

index a1b6cc4..bb27216 100644 (file)
@@ -51,8 +51,17 @@ cd /tmp
 
 
 echo "Downloading cdt code from nexus"
-mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.appc.cdt:config-design-tool:${APPC_VERSION}:zip -DoutputDirectory=/tmp
-unzip -d ${targetDir}/config-design-tool /tmp/config-design-tool*.zip
+
+CDT_TEMP_DIR=/tmp/appc-config-design-tool-${APPC_VERSION}
+if [ ! -d ${CDT_TEMP_DIR} ]
+then
+  mkdir -p ${CDT_TEMP_DIR}
+fi
+
+rm ${CDT_TEMP_DIR}/config-design-tool*.zip
+
+mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.appc.cdt:config-design-tool:${APPC_VERSION}:zip -DoutputDirectory=${CDT_TEMP_DIR}
+unzip -d ${targetDir}/config-design-tool ${CDT_TEMP_DIR}/config-design-tool*.zip
 
 find ${targetDir} -name '*.sh' -exec chmod +x '{}' \;