Compare commits

...

No commits in common. "7452cf8a1239619000d20566d14e8498f5917fdd" and "c02ed0167e40c5c54e2b39c79d5f4e1d295aec7e" have entirely different histories.

1 changed files with 24 additions and 0 deletions

24
entrypoint.sh Normal file
View File

@ -0,0 +1,24 @@
#!/usr/bin/env bash
set -e
file_env() {
local var="$1"
local fileVar="${var}_FILE"
local def="${2:-}"
if [ "${!var:-}" ] && [ "${!fileVar:-}" ]; then
echo >&2 "error: both $var and $fileVar are set (but are exclusive)"
exit 1
fi
local val="$def"
if [ "${!var:-}" ]; then
val="${!var}"
elif [ "${!fileVar:-}" ]; then
val="$(< "${!fileVar}")"
fi
export "$var"="$val"
unset "$fileVar"
}
file_env "CROC_PASS"