File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
2- set -eo pipefail
2+ set -e
33# If stuff hasn't been set
44if [ -z " $SITE_NAME " ]; then
55 export SITE_NAME=site_name
Original file line number Diff line number Diff line change 3939# --slow-requests=n
4040#
4141
42- set -euo pipefail
42+ set -eu
4343
4444OPTIND=1 # Reset getopt in case it has been used previously in the shell
4545
Original file line number Diff line number Diff line change 11#! /bin/bash
2- set -eo pipefail
2+ set -e
33source /configure.sh
44
55cp -R /src/. /src-shared/
@@ -11,4 +11,4 @@ if [ -n "$EXPOSE_CLASSIC" ]; then
1111fi
1212
1313echo " Starting Cron"
14- /usr/sbin/crond -f -c /etc/cron
14+ /usr/sbin/crond -f -c /etc/cron
Original file line number Diff line number Diff line change 11#! /bin/bash
2- set -eo pipefail
2+ set -e
33source /configure.sh
44
55cp -R /src/. /src-shared/
@@ -19,4 +19,4 @@ if [ -n "$EXPOSE_CLASSIC" ]; then
1919 ln -s /src-shared/ /src
2020fi
2121
22- php artisan queue:work --timeout=$WORKER_TIMEOUT --tries=$WORKER_TRIES
22+ php artisan queue:work --timeout=$WORKER_TIMEOUT --tries=$WORKER_TRIES
Original file line number Diff line number Diff line change 11#! /bin/bash
2- set -eo pipefail
2+ set -e
33source /configure.sh
44
55cp -R /src/. /src-shared/
@@ -10,4 +10,4 @@ if [ -n "$EXPOSE_CLASSIC" ]; then
1010 ln -s /src-shared/ /src
1111fi
1212
13- /usr/sbin/php-fpm --nodaemonize --fpm-config /etc/php/current/php-fpm.conf
13+ /usr/sbin/php-fpm --nodaemonize --fpm-config /etc/php/current/php-fpm.conf
You can’t perform that action at this time.
0 commit comments