mirror of
https://github.com/schollz/croc.git
synced 2024-11-23 23:54:17 +03:00
7 lines
101 B
Bash
Executable File
7 lines
101 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ -n "$CROC_PASS" ]; then
|
|
set -- --pass "$CROC_PASS" "$@"
|
|
fi
|
|
exec /croc "$@"
|