#!/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 "$@"