From 3259179855b171c62c9e87b9368abbf16919610d Mon Sep 17 00:00:00 2001 From: Alex Yang Date: Mon, 8 May 2017 16:02:20 +0800 Subject: Fix the parameters of downloading aria2c should use "-d" to indicate the directory to store the downloaded file. Change-Id: I6590403fb0c0b2938ee384cf5b1d5acc42ed94c1 Signed-off-by: Alex Yang --- jjb/daisy4nfv/daisy4nfv-download-artifact.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'jjb/daisy4nfv') diff --git a/jjb/daisy4nfv/daisy4nfv-download-artifact.sh b/jjb/daisy4nfv/daisy4nfv-download-artifact.sh index 6107f9de2..a64c80e5c 100755 --- a/jjb/daisy4nfv/daisy4nfv-download-artifact.sh +++ b/jjb/daisy4nfv/daisy4nfv-download-artifact.sh @@ -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 -- cgit 1.2.3-korg