From 4bfd89be6b7aa93d418219f2f766cab2aea2db24 Mon Sep 17 00:00:00 2001 From: Colin Schmidt Date: Thu, 11 Jun 2020 11:18:34 -0700 Subject: [PATCH] Use an accurate name for the ci skip list --- .githooks/ignore-certain-dirs-commit-msg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.githooks/ignore-certain-dirs-commit-msg b/.githooks/ignore-certain-dirs-commit-msg index 3ab0e7b45e..8756b91651 100644 --- a/.githooks/ignore-certain-dirs-commit-msg +++ b/.githooks/ignore-certain-dirs-commit-msg @@ -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/} )