From 7be5cfa449ddef0af83f822741c7a5fbf01b52dd Mon Sep 17 00:00:00 2001 From: Zedifus Date: Wed, 2 Mar 2022 13:28:36 +0000 Subject: [PATCH] Fix config check in wrapper .gitkeep was making the wrapper think config was present on fresh boot.. Whoops! --- docker_launcher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_launcher.sh b/docker_launcher.sh index 34dacd88..08fc81cc 100644 --- a/docker_launcher.sh +++ b/docker_launcher.sh @@ -1,7 +1,7 @@ #!/bin/sh # Check if config exists from existing installation (venv or previous docker launch) -if [ ! "$(ls -A ./app/config)" ]; then +if [ ! "$(ls -A --ignore=.gitkeep ./app/config)" ]; then mkdir ./app/config/ cp -r ./app/config_original/* ./app/config/ fi