Remove 'set -u' option from entrypoint (#14)

This commit is contained in:
Alexis Saettler 2020-05-15 22:54:14 +02:00 committed by GitHub
parent 3df6c3ab71
commit a0f9926090
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -Eeuo pipefail
set -Eeo pipefail
# wait for the database to start
waitfordb() {

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -Eeuo pipefail
set -Eeo pipefail
# wait for the database to start
waitfordb() {

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -Eeuo pipefail
set -Eeo pipefail
# wait for the database to start
waitfordb() {

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -Eeuo pipefail
set -Eeo pipefail
# wait for the database to start
waitfordb() {