Use an accurate name for the ci skip list

This commit is contained in:
Colin Schmidt
2020-06-11 11:18:34 -07:00
committed by GitHub
parent 623bafacd5
commit 4bfd89be6b

View File

@@ -8,9 +8,9 @@ fi
changes=( `git diff --name-only --cached` )
# Load the patterns we want to skip into an array
mapfile -t blacklist < .ciignore
mapfile -t blocklist < .ciignore
for i in "${blacklist[@]}"
for i in "${blocklist[@]}"
do
# Remove the current pattern from the list of changes
changes=( ${changes[@]/$i/} )