Fixed secure script to run against all files

This commit is contained in:
Mike Farah 2021-07-07 20:06:14 +10:00
parent aba950a751
commit b4ce50b705
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ set -o pipefail
if command -v gosec &> /dev/null
then
gosec ${PWD}
gosec ${PWD} ./...
else
./bin/gosec ${PWD}
./bin/gosec ${PWD} ./...
fi