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..."
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user