aboutsummaryrefslogtreecommitdiff
path: root/test/lint/lint-shell.sh
diff options
context:
space:
mode:
authorGleb Naumenko <naumenko.gs@gmail.com>2020-02-18 17:45:02 -0500
committerfanquake <fanquake@gmail.com>2021-10-21 09:38:55 +0800
commit0659f12b131fc5915fe7a493306af197f4fb838b (patch)
tree9d159bc034b5959d4ddf714df3298b51d4c937c8 /test/lint/lint-shell.sh
parent0eb7928ab8d9dcb840e4965bfa81deb752b00dfa (diff)
downloadbitcoin-0659f12b131fc5915fe7a493306af197f4fb838b.tar.xz
Add minisketch dependency
Diffstat (limited to 'test/lint/lint-shell.sh')
-rwxr-xr-xtest/lint/lint-shell.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lint/lint-shell.sh b/test/lint/lint-shell.sh
index 73ac583d84..0e18c73013 100755
--- a/test/lint/lint-shell.sh
+++ b/test/lint/lint-shell.sh
@@ -25,7 +25,7 @@ fi
SHELLCHECK_CMD=(shellcheck --external-sources --check-sourced)
EXCLUDE="--exclude=$(IFS=','; echo "${disabled[*]}")"
SOURCED_FILES=$(git ls-files | xargs gawk '/^# shellcheck shell=/ {print FILENAME} {nextfile}') # Check shellcheck directive used for sourced files
-if ! "${SHELLCHECK_CMD[@]}" "$EXCLUDE" $SOURCED_FILES $(git ls-files -- '*.sh' | grep -vE 'src/(leveldb|secp256k1|univalue)/'); then
+if ! "${SHELLCHECK_CMD[@]}" "$EXCLUDE" $SOURCED_FILES $(git ls-files -- '*.sh' | grep -vE 'src/(leveldb|secp256k1|minisketch|univalue)/'); then
EXIT_CODE=1
fi