mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 05:39:10 +00:00
13 lines
349 B
Bash
Executable file
13 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 "$@"
|