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