NFarrington/vatsim-url-shortener

View on GitHub
docker/php-fpm-entrypoint.sh

Summary

Maintainability
Test Coverage
#!/usr/bin/env sh

set -e

php composer.phar docker-entrypoint

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

exec "$@"