mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 02:25:40 +01:00
[scripts] lint-whitespace: check last N commits or unstaged changes
Get usage instructions: .lint-whitespace.sh -?
This commit is contained in:
parent
56910285fa
commit
8dbf740f80
@ -7,12 +7,26 @@
|
|||||||
# Check for new lines in diff that introduce trailing whitespace.
|
# Check for new lines in diff that introduce trailing whitespace.
|
||||||
|
|
||||||
# We can't run this check unless we know the commit range for the PR.
|
# We can't run this check unless we know the commit range for the PR.
|
||||||
if [ -z "${TRAVIS_COMMIT_RANGE}" ]; then
|
|
||||||
echo "Cannot run lint-whitespace.sh without commit range. To run locally, use:"
|
while getopts "?" opt; do
|
||||||
|
case $opt in
|
||||||
|
?)
|
||||||
|
echo "Usage: .lint-whitespace.sh [N]"
|
||||||
echo " TRAVIS_COMMIT_RANGE='<commit range>' .lint-whitespace.sh"
|
echo " TRAVIS_COMMIT_RANGE='<commit range>' .lint-whitespace.sh"
|
||||||
echo "For example:"
|
echo " .lint-whitespace.sh -?"
|
||||||
|
echo "Checks unstaged changes, the previous N commits, or a commit range."
|
||||||
echo "TRAVIS_COMMIT_RANGE='47ba2c3...ee50c9e' .lint-whitespace.sh"
|
echo "TRAVIS_COMMIT_RANGE='47ba2c3...ee50c9e' .lint-whitespace.sh"
|
||||||
exit 1
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -z "${TRAVIS_COMMIT_RANGE}" ]; then
|
||||||
|
if [ "$1" ]; then
|
||||||
|
TRAVIS_COMMIT_RANGE="HEAD~$1...HEAD"
|
||||||
|
else
|
||||||
|
TRAVIS_COMMIT_RANGE="HEAD"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
showdiff() {
|
showdiff() {
|
||||||
|
Loading…
Reference in New Issue
Block a user