1
0
mirror of https://github.com/schollz/croc.git synced 2024-11-23 23:54:17 +03: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 "$@"