diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-07-01 09:45:25 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-07-01 09:46:07 -0400 |
commit | 997719af1366ed60fc78f8a9b310274dde4c0d95 (patch) | |
tree | 3961801bb0969949de09f43e6ae67791117f996a | |
parent | f767bee8ff13390df1677dc843eb2e4a7c404d9c (diff) | |
download | kutter-997719af1366ed60fc78f8a9b310274dde4c0d95.tar.gz kutter-997719af1366ed60fc78f8a9b310274dde4c0d95.tar.xz kutter-997719af1366ed60fc78f8a9b310274dde4c0d95.zip |
test: Fix typo in whitespace check - there is no src/lib/ directory
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rwxr-xr-x | scripts/travis-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis-build.sh b/scripts/travis-build.sh index 68c2e8a6..2238bc54 100755 --- a/scripts/travis-build.sh +++ b/scripts/travis-build.sh @@ -19,7 +19,7 @@ PYTHON=${BUILD_DIR}/python-env/bin/python echo "travis_fold:start:check_whitespace" echo "=============== Check whitespace" WS_DIRS="config/ docs/ klippy/ scripts/ src/ test/" -WS_EXCLUDE="-path src/lib -prune -o -path scripts/kconfig -prune" +WS_EXCLUDE="-path scripts/kconfig -prune" WS_FILES="-o -name '*.[csh]' -o -name '*.py' -o -name '*.sh'" WS_FILES="$WS_FILES -o -name '*.md' -o -name '*.cfg'" WS_FILES="$WS_FILES -o -iname 'Makefile' -o -iname 'Kconfig'" |