From 06fed43cf0fb8931c794852fa0330cb346477209 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 10 May 2020 02:24:03 +0100 Subject: [PATCH] hack/populate_secrets: give up on posix compliance --- hack/populate_secrets.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/populate_secrets.sh b/hack/populate_secrets.sh index b71425bec4..c398be7266 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}\"" + manifest_key_val="${!manifest_key}" cp "${manifest_key_val}" "${manifest_value}" done < "$SECRETS_MANIFEST"