mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
14 lines
349 B
Bash
Executable File
14 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -f "/usr/local/etc/env" && -z "${CONTAINERBASE_ENV+x}" ]]; then
|
|
# shellcheck source=/dev/null
|
|
. /usr/local/etc/env
|
|
fi
|
|
|
|
if [[ ! -d "/tmp/containerbase" ]]; then
|
|
# initialize all prepared tools
|
|
containerbase-cli init tool all
|
|
fi
|
|
|
|
/usr/local/renovate/node --use-openssl-ca /usr/local/renovate/dist/config-validator.js "$@"
|