aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2015-10-21 11:45:36 -0700
committerKenny Root <kenny@the-b.org>2015-10-21 11:45:39 -0700
commit5d0a7919825c7ae01f29050b059559aad5ad6d46 (patch)
tree5f493756a239afe8f323e88b78087fa7188eb675 /scripts
parent0b4542c535e14c09b0341021d82ec444642e7e04 (diff)
downloadconnectbot-5d0a7919825c7ae01f29050b059559aad5ad6d46.tar.gz
connectbot-5d0a7919825c7ae01f29050b059559aad5ad6d46.tar.bz2
connectbot-5d0a7919825c7ae01f29050b059559aad5ad6d46.zip
Change check-lint-results.bash indentation
Use two spaces consistently throughout the file.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-lint-count.bash20
1 files changed, 10 insertions, 10 deletions
diff --git a/scripts/check-lint-count.bash b/scripts/check-lint-count.bash
index 901eded..c02f70e 100755
--- a/scripts/check-lint-count.bash
+++ b/scripts/check-lint-count.bash
@@ -5,8 +5,8 @@
# caching mechanism.
if [[ $# != 2 || ! -f $1 ]]; then \
- echo "Usage: $0 <lint.xml file> <historical.xml file>"
- exit 1
+ echo "Usage: $0 <lint.xml file> <historical.xml file>"
+ exit 1
fi
lint_file="$1"
@@ -15,8 +15,8 @@ historical_file="$2"
xqilla="$(which xqilla)"
if [[ ! -x $xqilla ]]; then \
- echo "Error: cannot find xqilla"
- exit 1
+ echo "Error: cannot find xqilla"
+ exit 1
fi
if [[ ! -f $historical_file ]]; then \
@@ -45,13 +45,13 @@ new_count=$(wc -l < "$lint_results")
echo "Historical count: $old_count, new count: $new_count"
if [[ $new_count > $old_count ]]; then \
- echo "FAILURE: lint issues increased from $old_count to $new_count"
- diff -u "$hist_results" "$lint_results"
- exit 2
+ echo "FAILURE: lint issues increased from $old_count to $new_count"
+ diff -u "$hist_results" "$lint_results"
+ exit 2
fi
if [[ $TRAVIS_PULL_REQUEST == false ]]; then \
- # Okay, we either stayed the same or reduced our number.
- # Write it out so we can check it next build!
- cp "$lint_file" "$historical_file"
+ # Okay, we either stayed the same or reduced our number.
+ # Write it out so we can check it next build!
+ cp "$lint_file" "$historical_file"
fi