From 513f424cc701902b6abd0010f56ade3ad716a767 Mon Sep 17 00:00:00 2001 From: Gareth Healy Date: Wed, 10 Jun 2020 10:56:06 +0100 Subject: [PATCH] Added mvnw to excludes (#15) --- runaction.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runaction.sh b/runaction.sh index 94f4ea5..2035c01 100755 --- a/runaction.sh +++ b/runaction.sh @@ -11,6 +11,7 @@ statuscode=0 excludes+=( ! -path *./.git/* ) excludes+=( ! -path *.go ) +excludes+=( ! -path */mvnw ) for path in ${INPUT_IGNORE}; do echo "::debug:: Adding '${path}' to excludes" @@ -70,4 +71,4 @@ for file in "${filepaths[@]}"; do shellcheck "$file" || statuscode=$? done -exit "$statuscode" \ No newline at end of file +exit "$statuscode"