1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-10 12:51:01 +02:00
schollz_croc/croc-entrypoint.sh
2025-01-31 17:00:42 +03:00

8 lines
103 B
Bash
Executable file

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