mirror of
https://github.com/creyD/autopep8_action.git
synced 2026-04-12 19:40:28 +02:00
Attempt on fixing the "dependencies=false" bug
- Silenced pip installs - Attempt on fixing the "dependencies=false" bug
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user