mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
038997ff45
f3b90f2e05 Run all lint scripts (Julian Fleischer) Pull request description: 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. ACKs for commit f3b90f: Tree-SHA512: 4f1f6435855dd5074a38c5887be6f096ec66f4dbe8712bdfd5fed0c510f1b2c083b7318cf3bfbdcc85982429fb7b4309e57ce48cc11736c86376658ec7ffea8f
31 lines
822 B
Bash
Executable File
31 lines
822 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2017-2019 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
#
|
|
# This script runs all contrib/devtools/lint-*.sh files, and fails if any exit
|
|
# with a non-zero status code.
|
|
|
|
# This script is intentionally locale dependent by not setting "export LC_ALL=C"
|
|
# in order to allow for the executed lint scripts to opt in or opt out of locale
|
|
# dependence themselves.
|
|
|
|
set -u
|
|
|
|
SCRIPTDIR=$(dirname "${BASH_SOURCE[0]}")
|
|
LINTALL=$(basename "${BASH_SOURCE[0]}")
|
|
|
|
EXIT_CODE=0
|
|
|
|
for f in "${SCRIPTDIR}"/lint-*.sh; do
|
|
if [ "$(basename "$f")" != "$LINTALL" ]; then
|
|
if ! "$f"; then
|
|
echo "^---- failure generated from $f"
|
|
EXIT_CODE=1
|
|
fi
|
|
fi
|
|
done
|
|
|
|
exit ${EXIT_CODE}
|