##// END OF EJS Templates
fix(docs): fixed ordering
fix(docs): fixed ordering

File last commit:

r1:29323844
r420:ee7a852f
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 "$@"