depot/hack/populate_secrets.sh

13 lines
385 B
Bash
Raw Normal View History

#!/bin/sh
set -eu
echo Dropping files into place as defined by manifest...
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}"
2020-05-10 01:21:18 +00:00
eval "manifest_key_val=\"\${$manifest_key}\""
cp "${manifest_key_val}" "${manifest_value}"
done < "$SECRETS_MANIFEST"