diff --git a/hack/populate_secrets.sh b/hack/populate_secrets.sh index 2ef729df0b..8175931518 100755 --- a/hack/populate_secrets.sh +++ b/hack/populate_secrets.sh @@ -7,6 +7,6 @@ while read -r manifest_line; do manifest_key="$(echo "$manifest_line" | cut -d'=' -f1)" manifest_value="$(echo "$manifest_line" | cut -d'=' -f2)" printf "\t%s\n" "${manifest_key}" - eval manifest_key_val=\"\$$manifest_key\" + eval manifest_key_val=\'\$$manifest_key\' cp "${manifest_key_val}" "${manifest_value}" done < "$SECRETS_MANIFEST"