mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
Make bacon respect $VERBOSE env var (default=off)
This commit is contained in:
parent
3663559291
commit
666f3663e0
1 changed files with 2 additions and 1 deletions
3
Rakefile
3
Rakefile
|
@ -55,7 +55,8 @@ unless [].respond_to? :shuffle!
|
|||
end
|
||||
|
||||
def run_specs paths
|
||||
exec "bacon -Ispec -rubygems -q #{paths.join ' '}"
|
||||
quiet = ENV['VERBOSE'] ? '' : '-q'
|
||||
exec "bacon -Ispec -rubygems #{quiet} #{paths.join ' '}"
|
||||
end
|
||||
|
||||
desc "Run tests"
|
||||
|
|
Loading…
Reference in a new issue