mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-23 05:02:15 -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
|
# Activate virtualenv
|
||||||
source bin/activate
|
source bin/activate
|
||||||
# Handle the ansibl-lint corner case
|
# Handle the ansibl-lint corner case
|
||||||
if [[ "$PACKAGE_NAME" == "ansible-lint" ]]; then
|
if [[ $PACKAGE_NAME == "ansible-lint" ]]; then
|
||||||
pip install "ansible-lint[core]"
|
pip install "ansible-lint[core]"
|
||||||
else
|
else
|
||||||
pip install "${PACKAGE_NAME}"
|
pip install "${PACKAGE_NAME}"
|
||||||
fi
|
fi
|
||||||
# Generate an update requirements.txt
|
# Generate an update requirements.txt
|
||||||
pip freeze > requirements.txt
|
pip freeze >requirements.txt
|
||||||
# deactivate the python virtualenv
|
# deactivate the python virtualenv
|
||||||
deactivate
|
deactivate
|
||||||
# pop the stack
|
# pop the stack
|
||||||
|
|
Loading…
Reference in a new issue