This repository has been archived on 2022-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
renovate-bot/entrypoint.sh

30 lines
479 B
Bash

#!/bin/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 "GITHUB_COM_TOKEN"
exec "$@"