From 028e8f22a18cf4e874abbb670bc3211e1211b059 Mon Sep 17 00:00:00 2001 From: platania Date: Mon, 20 Feb 2017 08:53:06 -0500 Subject: [PATCH] Replacing quotes with double quotes Change-Id: I379650913e42e08d6c832a962bcac1a89b1f7218 Signed-off-by: platania --- scripts/deploy.sh | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 3e099406..0dd0524e 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -22,23 +22,18 @@ NETRC=$(mktemp) echo "machine nexus.openecomp.org login ${USER} password ${PASS}" > "${NETRC}" ####################################### -echo "##### TEST #####" -cat "${NETRC}" -echo "Username: ${USER}; Password: ${PASS}" -echo "################" - ##### Upload scripts into Nexus raw repository ##### cd $PATH_TO_BOOT -ls | xargs -I{} curl -vk --netrc-file '${NETRC}' --upload-file {} $REPO_URL/$BOOT_GROUP_ID/$VERSION/{} +ls | xargs -I{} curl -vk --netrc-file "${NETRC}" --upload-file {} $REPO_URL/$BOOT_GROUP_ID/$VERSION/{} cd $PATH_TO_HEAT -ls | xargs -I{} curl -vk --netrc-file '${NETRC}' --upload-file {} $REPO_URL/$HEAT_GROUP_ID/$VERSION/{} +ls | xargs -I{} curl -vk --netrc-file "${NETRC}" --upload-file {} $REPO_URL/$HEAT_GROUP_ID/$VERSION/{} cd $PATH_TO_VFW -ls | xargs -I{} curl -vk --netrc-file '${NETRC}' --upload-file {} $REPO_URL/$VFW_GROUP_ID/$VERSION/{} +ls | xargs -I{} curl -vk --netrc-file "${NETRC}" --upload-file {} $REPO_URL/$VFW_GROUP_ID/$VERSION/{} cd $PATH_TO_VLB -ls | xargs -I{} curl -vk --netrc-file '${NETRC}' --upload-file {} $REPO_URL/$VLB_GROUP_ID/$VERSION/{} +ls | xargs -I{} curl -vk --netrc-file "${NETRC}" --upload-file {} $REPO_URL/$VLB_GROUP_ID/$VERSION/{} #################################################### ########## Clean up ########## -- 2.16.6