mirror of
https://github.com/danog/php.git
synced 2024-12-02 17:38:24 +01:00
0bb4068bd6
- this will allow us release to `jessie` and `stretch` variants at the same time so that users have a time to transition from one to the other.
10 lines
122 B
Bash
Executable File
10 lines
122 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# first arg is `-f` or `--some-option`
|
|
if [ "${1#-}" != "$1" ]; then
|
|
set -- php-fpm "$@"
|
|
fi
|
|
|
|
exec "$@"
|