A little tweak to startup.sh so we dont explode as easily.

This commit is contained in:
Cassowary 2023-01-04 20:44:41 -08:00
parent 5d24f7d30d
commit 6cefb803c1
1 changed files with 2 additions and 1 deletions

View File

@ -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"