1
0
mirror of https://github.com/schollz/croc.git synced 2024-11-24 08:02:33 +03:00
croc/croc-entrypoint.sh

7 lines
101 B
Bash
Raw Normal View History

2019-12-06 16:49:45 +03:00
#!/bin/sh
set -e
if [ -n "$CROC_PASS" ]; then
set -- --pass "$CROC_PASS" "$@"
fi
exec /croc "$@"