Skip to content

Commit 2c76be1

Browse files
committed
[build] pass -v flag directly due rake bug
1 parent 0108454 commit 2c76be1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Rake::TestTask.new do |task|
3333
task.libs << File.expand_path('src/test/ruby', File.dirname(__FILE__))
3434
test_files = FileList['src/test/ruby/**/test*.rb'].to_a
3535
task.test_files = test_files.map { |path| path.sub('src/test/ruby/', '') }
36-
task.verbose = true
36+
task.verbose = false # using -v directly instead due issues with rake
3737
task.loader = :direct
38-
task.ruby_opts = [ '-C', 'src/test/ruby', '-rbundler/setup' ]
38+
task.ruby_opts = [ '-v', '-C', 'src/test/ruby', '-rbundler/setup' ]
3939
end
4040
task :test => 'lib/jopenssl.jar'
4141

0 commit comments

Comments
 (0)