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 1
1
#! /bin/bash
2
- set -eo pipefail
2
+ set -e
3
3
# If stuff hasn't been set
4
4
if [ -z " $SITE_NAME " ]; then
5
5
export SITE_NAME=site_name
Original file line number Diff line number Diff line change 39
39
# --slow-requests=n
40
40
#
41
41
42
- set -euo pipefail
42
+ set -eu
43
43
44
44
OPTIND=1 # Reset getopt in case it has been used previously in the shell
45
45
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- set -eo pipefail
2
+ set -e
3
3
source /configure.sh
4
4
5
5
cp -R /src/. /src-shared/
@@ -11,4 +11,4 @@ if [ -n "$EXPOSE_CLASSIC" ]; then
11
11
fi
12
12
13
13
echo " 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 1
1
#! /bin/bash
2
- set -eo pipefail
2
+ set -e
3
3
source /configure.sh
4
4
5
5
cp -R /src/. /src-shared/
@@ -19,4 +19,4 @@ if [ -n "$EXPOSE_CLASSIC" ]; then
19
19
ln -s /src-shared/ /src
20
20
fi
21
21
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 1
1
#! /bin/bash
2
- set -eo pipefail
2
+ set -e
3
3
source /configure.sh
4
4
5
5
cp -R /src/. /src-shared/
@@ -10,4 +10,4 @@ if [ -n "$EXPOSE_CLASSIC" ]; then
10
10
ln -s /src-shared/ /src
11
11
fi
12
12
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