From b4ce50b705da6da8e84c23c724382bd59b8ac814 Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Wed, 7 Jul 2021 20:06:14 +1000 Subject: [PATCH] Fixed secure script to run against all files --- scripts/secure.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/secure.sh b/scripts/secure.sh index cf2a7dd9..1a517fd2 100755 --- a/scripts/secure.sh +++ b/scripts/secure.sh @@ -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 \ No newline at end of file