From 6cefb803c1bc61162442f03b49677440a60a52b3 Mon Sep 17 00:00:00 2001 From: Cassowary Rusnov Date: Wed, 4 Jan 2023 20:44:41 -0800 Subject: [PATCH] A little tweak to startup.sh so we dont explode as easily. --- startup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/startup.sh b/startup.sh index 9be75ad..5b95c89 100755 --- a/startup.sh +++ b/startup.sh @@ -1,6 +1,7 @@ #!/bin/sh -cd $VOILA_DIRECTORY +# Nofail the cd just in case the image isn't up yet +cd $VOILA_DIRECTORY || true if [-e "$REQUIREMENTS_PATH" ]; then pip install -r "$REQUIREMENTS_PATH"