Files
gerbil/entrypoint.sh
2025-01-14 23:45:12 -05:00

14 lines
183 B
Bash

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