1
0
mirror of https://github.com/schollz/croc synced 2024-07-01 07:04:32 +00:00
croc/croc-entrypoint.sh
2019-12-07 02:06:01 +01:00

7 lines
101 B
Bash
Executable File

#!/bin/sh
set -e
if [ -n "$CROC_PASS" ]; then
set -- --pass "$CROC_PASS" "$@"
fi
exec /croc "$@"