Files
gerbil/entrypoint.sh
2025-01-15 00:01:34 -05:00

10 lines
124 B
Bash

#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- gerbil "$@"
fi
exec "$@"