diff options
| author | TheFrenchGhosty <47571719+TheFrenchGhosty@users.noreply.github.com> | 2020-08-21 12:52:15 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-21 12:52:15 +0000 |
| commit | 45fda595c3c10ad2b0e287b633a733045865e9b6 (patch) | |
| tree | e5db1784d5c10fa1cac7e46c8f4ba8467704cf44 | |
| parent | 1f15ea0bd86f01428820e5b3337e823cdfb16581 (diff) | |
| parent | ccbbe81141665a41490041eb84e7c6c4f7c437cd (diff) | |
| download | invidious-45fda595c3c10ad2b0e287b633a733045865e9b6.tar.gz invidious-45fda595c3c10ad2b0e287b633a733045865e9b6.tar.bz2 invidious-45fda595c3c10ad2b0e287b633a733045865e9b6.zip | |
Merge pull request #1346 from resttime/fix-docker-init
Use bash in the docker init shebang
| -rwxr-xr-x | docker/init-invidious-db.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/init-invidious-db.sh b/docker/init-invidious-db.sh index 6c8ad3a7..3808e673 100755 --- a/docker/init-invidious-db.sh +++ b/docker/init-invidious-db.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash set -eou pipefail psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL |
