mirror of
https://github.com/fosrl/gerbil.git
synced 2026-02-08 05:56:40 +00:00
14 lines
183 B
Bash
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 "$@" |