mirror of
https://github.com/fosrl/olm.git
synced 2025-12-05 19:17:35 -06:00
10 lines
121 B
Bash
10 lines
121 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# first arg is `-f` or `--some-option`
|
|
if [ "${1#-}" != "$1" ]; then
|
|
set -- olm "$@"
|
|
fi
|
|
|
|
exec "$@" |