##// END OF EJS Templates
compose: updates to source installation, and new build tag image support
compose: updates to source installation, and new build tag image support

File last commit:

r1:29323844
r20:c64db89e
Show More
svn-entrypoint.sh
14 lines | 285 B | application/x-sh | BashLexer
#!/usr/bin/env bash
set -Eeo pipefail
BOOTSTRAP_FILE=.bootstrapped
# Avoid destroying bootstrapping by simple start/stop
if [[ ! -e /.$BOOTSTRAP_FILE ]]; then
echo "ENTRYPOINT: Starting $RC_APP_TYPE bootstrap"
touch $MOD_DAV_SVN_CONF_FILE
touch /$BOOTSTRAP_FILE
fi
exec "$@"