Attempt on fixing the "dependencies=false" bug

- Silenced pip installs
- Attempt on fixing the "dependencies=false" bug
This commit is contained in:
2019-11-15 00:31:08 +01:00
parent 6ab9bc834c
commit e6bb938eaf

View File

@@ -19,12 +19,12 @@ EOF
} }
echo "Installing dependencies..." echo "Installing dependencies..."
pip install --upgrade pip pip install -q --upgrade pip
# Install dependencies # Install dependencies
pip install autopep8 pip install -q autopep8
# Install custom project dependencies if applicable # Install custom project dependencies if applicable
if ! $INPUT_DEPENDENCIES == "false" if ! ["$INPUT_DEPENDENCIES" = "false"];
then then
pip install -r $INPUT_DEPENDENCIES pip install -r $INPUT_DEPENDENCIES
fi fi