php/7.4-rc/buster/cli/docker-php-entrypoint
2019-07-01 14:26:08 -07:00

10 lines
118 B
Bash
Executable File

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