Fix string literals

'' is different from "" in Bash. Leaving this up for
whatever the next problem I find is so that I can stop
polluting the commit history with tiny fixes.

Change-Id: Ia1d53670347a3862c743a4a74b0f0d3eda62dbd8
This commit is contained in:
jkilpatr 2016-12-10 12:29:36 +00:00
parent a0d7fe8a4f
commit c1e59ddb19

View File

@ -26,7 +26,7 @@ if [ ! -z ${current_build+x} ]
source $WORKSPACE/tripleo-environments/ci-scripts/internal-functions.sh
hash=$(get_delorean_hash_from_url $current_build)
cached_image="$INTERNAL_IMAGE_SERVER/$RELEASE/delorean/$hash/undercloud.qcow2"
export VARS='$VARS --extra-vars undercloud_image_url=$cached_image --extra-vars dlrn_hash=$hash'
export VARS="$VARS --extra-vars undercloud_image_url=$cached_image --extra-vars dlrn_hash=$hash"
#If we are not in the pipeline downstream builds need to use current-passed-ci
elif [[ $RELEASE == *rhos-* ]]