Run shfmt

This commit is contained in:
Brett Logan 2022-02-22 10:34:46 -05:00
parent 5a6f3796e1
commit 7e9696340d
No known key found for this signature in database
GPG key ID: 52ED7D1F56850EE6

View file

@ -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