mirror of
https://github.com/schollz/croc.git
synced 2025-10-10 12:51:01 +02:00
8 lines
103 B
Bash
Executable file
8 lines
103 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -n "$CROC_PASS" ]; then
|
|
set -- --pass "$CROC_PASS" "$@"
|
|
fi
|
|
|
|
exec /croc "$@"
|