mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2024-08-16 10:09:53 +02:00
Added mvnw to excludes (#15)
This commit is contained in:
parent
fbd26dc426
commit
513f424cc7
1 changed files with 2 additions and 1 deletions
|
@ -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"
|
||||
exit "$statuscode"
|
||||
|
|
Loading…
Reference in a new issue