1
0
mirror of https://github.com/danog/php.git synced 2024-12-04 10:28:10 +01:00
php/8.2/bullseye/zts/docker-php-entrypoint

10 lines
118 B
Plaintext
Raw Normal View History

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