Kristóf Torma
5a2a297ce3
All checks were successful
continuous-integration/drone/push Build is passing
12 lines
161 B
Bash
12 lines
161 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
cp -r /var/www/cloudlog /var/www/html
|
|
|
|
# first arg is `-f` or `--some-option`
|
|
if [ "${1#-}" != "$1" ]; then
|
|
set -- php-fpm "$@"
|
|
fi
|
|
|
|
exec "$@"
|