Files
olm/entrypoint.sh
2025-02-20 22:04:06 -05:00

10 lines
124 B
Bash

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