From 44018a1a07393566d71d3b988229c33735fe078c Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 10 May 2020 00:29:54 +0100 Subject: [PATCH] hack/populate_secret: oops, did it wrong --- hack/populate_secrets.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/populate_secrets.sh b/hack/populate_secrets.sh index f6f814daf5..2ef729df0b 100755 --- a/hack/populate_secrets.sh +++ b/hack/populate_secrets.sh @@ -4,8 +4,8 @@ set -eu echo Dropping files into place as defined by manifest... while read -r manifest_line; do - manifest_key="$(echo "$manifest_line" | cut -f'=' -f1)" - manifest_value="$(echo "$manifest_line" | cut -f'=' -f2)" + 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\" cp "${manifest_key_val}" "${manifest_value}"