mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 08:41:02 -05:00
Run shfmt
This commit is contained in:
parent
5a6f3796e1
commit
7e9696340d
1 changed files with 2 additions and 2 deletions
4
.github/scripts/update-python.sh
vendored
4
.github/scripts/update-python.sh
vendored
|
@ -35,13 +35,13 @@ for DEP_FILE in *.txt; do
|
|||
# Activate virtualenv
|
||||
source bin/activate
|
||||
# Handle the ansibl-lint corner case
|
||||
if [[ "$PACKAGE_NAME" == "ansible-lint" ]]; then
|
||||
if [[ $PACKAGE_NAME == "ansible-lint" ]]; then
|
||||
pip install "ansible-lint[core]"
|
||||
else
|
||||
pip install "${PACKAGE_NAME}"
|
||||
fi
|
||||
# Generate an update requirements.txt
|
||||
pip freeze > requirements.txt
|
||||
pip freeze >requirements.txt
|
||||
# deactivate the python virtualenv
|
||||
deactivate
|
||||
# pop the stack
|
||||
|
|
Loading…
Reference in a new issue