Skip to content

Commit

Permalink
Fixed exclude flag issue with functions_lib.sh
Browse files Browse the repository at this point in the history
Include the all text named functions within functions_lib.sh call if the -e flag is set.

Signed-off-by: Niall T <jammasterj89@gmail.com>
  • Loading branch information
jammasterj89 committed Sep 2, 2019
1 parent b354514 commit f4e33ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-bench-security.sh
Expand Up @@ -138,7 +138,7 @@ main () {
cis
elif [ -z "$check" ] && [ "$checkexclude" ]; then
checkexcluded="$(echo ",$checkexclude" | sed -e 's/^/\^/g' -e 's/,/\$|/g' -e 's/$/\$/g')"
for c in $(grep 'check_[0-9]' functions_lib.sh | grep -vE "$checkexcluded"); do
for c in $(grep -E 'check_[0-9]|check_[a-z]' functions_lib.sh | grep -vE "$checkexcluded"); do
"$c"
done
else
Expand Down

0 comments on commit f4e33ee

Please sign in to comment.