summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-02-12 18:34:07 +0100
committerRémy Coutable <remy@rymai.me>2018-02-14 17:34:34 +0100
commit2f0d2ab55b6deac79f81834f6724a676ceae94ae (patch)
treef4aa6c1946ceb13933c5ad378813c47312f2d5a0 /scripts
parente4990b66df64f2e23502d161f411335c9a771a43 (diff)
downloadgitlab-ce-2f0d2ab55b6deac79f81834f6724a676ceae94ae.tar.gz
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/static-analysis4
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