From 1369fc9af8d077564371478f48c60af7c690c68b Mon Sep 17 00:00:00 2001 From: Justin Collins Date: Tue, 20 Dec 2011 10:54:27 -0800 Subject: [PATCH] Report when running checks in parallel --- lib/brakeman.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/brakeman.rb b/lib/brakeman.rb index 65544258..3b160321 100644 --- a/lib/brakeman.rb +++ b/lib/brakeman.rb @@ -208,7 +208,11 @@ module Brakeman warn "Processing application in #{options[:app_path]}" tracker = scanner.process - warn "Running checks..." + if options[:parallel_checks] + warn "Running checks in parallel..." + else + warn "Runnning checks..." + end tracker.run_checks if options[:output_file] -- GitLab