Files
gerbil/entrypoint.sh
Owen Schwartz 5101e6f125 Add env vars
2025-01-14 22:04:06 -05:00

10 lines
122 B
Bash

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