Fix the parameters of downloading 23/34423/2
authorAlex Yang <yangyang1@zte.com.cn>
Mon, 8 May 2017 08:02:20 +0000 (16:02 +0800)
committerAlex Yang <yangyang1@zte.com.cn>
Mon, 8 May 2017 08:13:30 +0000 (16:13 +0800)
aria2c should use "-d" to indicate the directory to store the downloaded
file.

Change-Id: I6590403fb0c0b2938ee384cf5b1d5acc42ed94c1
Signed-off-by: Alex Yang <yangyang1@zte.com.cn>
jjb/daisy4nfv/daisy4nfv-download-artifact.sh

index 6107f9d..a64c80e 100755 (executable)
@@ -63,12 +63,12 @@ echo
 
 # download the file
 if [[ "$NODE_NAME" =~ (zte) ]] && [ -x "$(command -v aria2c)" ]; then
-    DOWNLOAD_CMD="aria2c -x 3"
+    DOWNLOAD_CMD="aria2c -x 3 --allow-overwrite=true -d $WORKSPACE -o opnfv.bin"
 else
-    DOWNLOAD_CMD="curl -L -s"
+    DOWNLOAD_CMD="curl -L -s -o $WORKSPACE/opnfv.bin"
 fi
 
-$DOWNLOAD_CMD -o $WORKSPACE/opnfv.bin http://$OPNFV_ARTIFACT_URL > gsutil.bin.log 2>&1
+$DOWNLOAD_CMD http://$OPNFV_ARTIFACT_URL > gsutil.bin.log 2>&1
 
 # list the file
 ls -al $WORKSPACE/opnfv.bin