diff options
author | Alex <alescdb@users.noreply.github.com> | 2015-09-03 19:16:35 +0200 |
---|---|---|
committer | Alex <alescdb@users.noreply.github.com> | 2015-09-03 19:16:35 +0200 |
commit | 6df617186401290a6204d1941685fe3a19b01807 (patch) | |
tree | e325fae5f328623a13ffcfcc7ded5f8fec69df71 /scripts | |
parent | 7ff37461b34fecc0a828bc09112a84e4a9b31ae6 (diff) | |
download | connectbot-6df617186401290a6204d1941685fe3a19b01807.tar.gz connectbot-6df617186401290a6204d1941685fe3a19b01807.tar.bz2 connectbot-6df617186401290a6204d1941685fe3a19b01807.zip |
Remove unused variables
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-lint-count.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/check-lint-count.sh b/scripts/check-lint-count.sh index bd8d05c..a029edb 100755 --- a/scripts/check-lint-count.sh +++ b/scripts/check-lint-count.sh @@ -4,10 +4,6 @@ # Travis CI builds to fail when the number increases by exploiting the # caching mechanism. -# This is to prime the system: when I submitted this change, this is the -# number of lint warnings that existed. -DEFAULT_NUMBER=207 - if [[ $# != 2 || ! -f $1 ]]; then \ echo "Usage: $0 <lint.xml file> <historical.xml file>" exit 1 @@ -15,7 +11,6 @@ fi lint_file="$1" historical_file="$2" -success_file="$3" xmllint="$(which xmllint)" |