Reduce progress bar noise during brakeman run

This commit is contained in:
Peter Suschlik 2016-03-04 22:12:25 +00:00
parent 925da3fdf8
commit 6f837df08e
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ desc 'Security check via brakeman'
task :brakeman do
# We get 0 warnings at level 'w3' but we would like to reach 'w2'. Merge
# requests are welcome!
if system(*%W(brakeman --skip-files lib/backup/repository.rb -w3 -z))
if system(*%W(brakeman --no-progress --skip-files lib/backup/repository.rb -w3 -z))
puts 'Security check succeed'
else
puts 'Security check failed'