diff options
author | Rémy Coutable <remy@rymai.me> | 2018-02-12 18:34:07 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-02-14 17:34:34 +0100 |
commit | 2f0d2ab55b6deac79f81834f6724a676ceae94ae (patch) | |
tree | f4aa6c1946ceb13933c5ad378813c47312f2d5a0 /scripts | |
parent | e4990b66df64f2e23502d161f411335c9a771a43 (diff) | |
download | gitlab-ce-2f0d2ab55b6deac79f81834f6724a676ceae94ae.tar.gz |
Run lint:all tasks in forks42050-combine-all-rake-based-lints-in-one-rake-process-in-ci
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/static-analysis | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/static-analysis b/scripts/static-analysis index db4df4ee6cb..0e67eabfec1 100755 --- a/scripts/static-analysis +++ b/scripts/static-analysis @@ -7,7 +7,7 @@ require_relative '../lib/gitlab/popen/runner' def emit_warnings(static_analysis) static_analysis.warned_results.each do |result| puts - puts "**** #{result.cmd.join(' ')} had the following warnings:" + puts "**** #{result.cmd.join(' ')} had the following warning(s):" puts puts result.stderr puts @@ -17,7 +17,7 @@ end def emit_errors(static_analysis) static_analysis.failed_results.each do |result| puts - puts "**** #{result.cmd.join(' ')} failed with the following error:" + puts "**** #{result.cmd.join(' ')} failed with the following error(s):" puts puts result.stdout puts result.stderr |