From e6bb938eaf2881a46cac070aa6aff98224ffc86b Mon Sep 17 00:00:00 2001 From: Conrad Date: Fri, 15 Nov 2019 00:31:08 +0100 Subject: [PATCH] Attempt on fixing the "dependencies=false" bug - Silenced pip installs - Attempt on fixing the "dependencies=false" bug --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 87b1643..f7c5472 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -19,12 +19,12 @@ EOF } echo "Installing dependencies..." -pip install --upgrade pip +pip install -q --upgrade pip # Install dependencies -pip install autopep8 +pip install -q autopep8 # Install custom project dependencies if applicable -if ! $INPUT_DEPENDENCIES == "false" +if ! ["$INPUT_DEPENDENCIES" = "false"]; then pip install -r $INPUT_DEPENDENCIES fi