mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-26 04:51:08 -05:00
13 lines
202 B
Bash
13 lines
202 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# custom script to overwrite stikked config variables
|
|
bash /bin/replace-envvars.sh
|
|
|
|
# first arg is `-f` or `--some-option`
|
|
if [ "${1#-}" != "$1" ]; then
|
|
set -- php "$@"
|
|
fi
|
|
|
|
exec "$@"
|