mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-28 20:40:58 +00:00
Minor update
This commit is contained in:
parent
d6a754e8b2
commit
1feb6f73b9
3 changed files with 4 additions and 3 deletions
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
|
|
@ -41,7 +41,8 @@ jobs:
|
|||
shell: bash
|
||||
run: |
|
||||
python -m pip install pyflakes
|
||||
OUT=$( (python -m pyflakes $(git ls-files '*.py' | grep -v '^thirdparty/') 2>&1 || true) | grep -v ' redefines ')
|
||||
OUT=$(git ls-files '*.py' | grep -v '^thirdparty/' | xargs python -m pyflakes 2>&1) || true
|
||||
OUT=$(echo "$OUT" | grep -v ' redefines ')
|
||||
if [ -n "$OUT" ]; then echo "$OUT"; exit 1; fi
|
||||
echo "pyflakes: clean"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue