From e3dd915f0b7bd975b42e7966ebf068ce90fc93b6 Mon Sep 17 00:00:00 2001 From: Nils Date: Sun, 7 Nov 2021 16:41:21 +0000 Subject: [PATCH] load_initial_data.sh: /bin/bash -> /bin/sh The shell script doesn't use bash extensions and bash may not be available on all systems at that location. --- pgweb/load_initial_data.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgweb/load_initial_data.sh b/pgweb/load_initial_data.sh index fb16e70c..019b277e 100755 --- a/pgweb/load_initial_data.sh +++ b/pgweb/load_initial_data.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # We keep this in a separate script because using initial_data.xxx in django will overwrite # critical data in the database when running a 'syncdb'. We'd like to keep the ability to -- 2.31.1