depot/hack/populate_secrets.sh

13 lines
381 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 -f'=' -f1)"
manifest_value="$(echo "$manifest_line" | cut -f'=' -f2)"
printf "\t%s\n" "${manifest_key}"
eval manifest_key_val=\"\$$manifest_key\"
cp "${manifest_key_val}" "${manifest_value}"
done < "$SECRETS_MANIFEST"