Skip to content

Commit f3b90f2

Browse files
authored
Run all lint scripts
The description reads: ``` # This script runs all contrib/devtools/lint-*.sh files, and fails if any exit # with a non-zero status code. ``` This runs all scripts and returns with a non-zero exit code if any failed.
1 parent fd61b9f commit f3b90f2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/lint/lint-all.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
#
3-
# Copyright (c) 2017 The Bitcoin Core developers
3+
# Copyright (c) 2017-2019 The Bitcoin Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
#
@@ -16,11 +16,15 @@ set -u
1616
SCRIPTDIR=$(dirname "${BASH_SOURCE[0]}")
1717
LINTALL=$(basename "${BASH_SOURCE[0]}")
1818

19+
EXIT_CODE=0
20+
1921
for f in "${SCRIPTDIR}"/lint-*.sh; do
2022
if [ "$(basename "$f")" != "$LINTALL" ]; then
2123
if ! "$f"; then
2224
echo "^---- failure generated from $f"
23-
exit 1
25+
EXIT_CODE=1
2426
fi
2527
fi
2628
done
29+
30+
exit ${EXIT_CODE}

0 commit comments

Comments
 (0)