diff options
author | Kenny Root <kenny@the-b.org> | 2015-10-21 17:27:26 -0700 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2015-10-21 17:27:26 -0700 |
commit | 5a333f12c354205282898f3a8db0c517d1356f33 (patch) | |
tree | b8a94e308928827884595943292945fb3413cfa6 /scripts/check-lint-count.bash | |
parent | dacab1290944444313fcae54a351b9ae5db7f263 (diff) | |
parent | 5e4227c89936a5c578f2772eceb58e8fddd3b9da (diff) | |
download | connectbot-5a333f12c354205282898f3a8db0c517d1356f33.tar.gz connectbot-5a333f12c354205282898f3a8db0c517d1356f33.tar.bz2 connectbot-5a333f12c354205282898f3a8db0c517d1356f33.zip |
Merge pull request #320 from kruton/lint-script-message
Change the lint script to use message instead of summary
Diffstat (limited to 'scripts/check-lint-count.bash')
-rwxr-xr-x | scripts/check-lint-count.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-lint-count.bash b/scripts/check-lint-count.bash index c02f70e..5247a9b 100755 --- a/scripts/check-lint-count.bash +++ b/scripts/check-lint-count.bash @@ -32,7 +32,7 @@ lint_results="$tmp_dir/lint.txt" hist_results="$tmp_dir/hist.txt" run_query() { - local xqilla_script='string-join(//issue/location/(concat("file=", @file, " line=", @line, " column=", @column, " reason=", ../@summary)), " ")' + local xqilla_script='string-join(//issue/location/(concat("file=", @file, " line=", @line, " column=", @column, " message=", ../@message)), " ")' xqilla -i "$1" <(echo "$xqilla_script") | sed "s,$PWD/,,g" > "$2" } |