From ce763b1410715e06e0b57adf87348f65f300c06d Mon Sep 17 00:00:00 2001 From: Cassowary Rusnov Date: Thu, 5 Jan 2023 15:48:05 -0800 Subject: [PATCH] Fix shell error in startup.sh --- startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startup.sh b/startup.sh index 24ef59c..fe9cacd 100755 --- a/startup.sh +++ b/startup.sh @@ -3,7 +3,7 @@ cd "$VOILA_DIRECTORY" || true if [ -r "$REQUIREMENTS_PATH" ]; then - pip install -r --no-cache-dir "$REQUIREMENTS_PATH" + pip install --no-cache-dir -r "$REQUIREMENTS_PATH" fi pip freeze |grep voila || pip install voila==$VOILA_VERSION