Make lint-includes.sh work from any directory

This commit is contained in:
Kristaps Kaupe 2019-08-31 00:19:49 +03:00
parent f5db3f2128
commit 490da639cb
No known key found for this signature in database
GPG key ID: D47B1B4232B55437

View file

@ -11,6 +11,9 @@
export LC_ALL=C
IGNORE_REGEXP="/(leveldb|secp256k1|univalue)/"
# cd to root folder of git repo for git ls-files to work properly
cd "$(dirname $0)/../.." || exit 1
filter_suffix() {
git ls-files | grep -E "^src/.*\.${1}"'$' | grep -Ev "${IGNORE_REGEXP}"
}