mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-02 15:57:47 +01:00
10 lines
122 B
Plaintext
10 lines
122 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# first arg is `-f` or `--some-option`
|
||
|
if [ "${1#-}" != "$1" ]; then
|
||
|
set -- php-fpm "$@"
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|