Skip to content

Commit 1ac098d

Browse files
committed
Try using a default openssl on Travis.
1 parent 5e6fe27 commit 1ac098d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

rakelib/gems.rake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ namespace :gems do
5555
)
5656

5757
unless BUILD_CONFIG[:darwin] and
58+
ENV["TRAVIS_OS_NAME"] != "osx" and
5859
`which brew`.chomp.size > 0 and
5960
$?.success? and
6061
(openssl = `brew --prefix #{ENV["RBX_OPENSSL"] || "openssl"}`.chomp).size > 0

rakelib/preinstall_gems.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
gems = BUILD_CONFIG[:gem_files]
99
install_dir = "#{BUILD_CONFIG[:build_prefix]}#{BUILD_CONFIG[:gemsdir]}"
1010
unless BUILD_CONFIG[:darwin] and
11+
ENV["TRAVIS_OS_NAME"] != "osx" and
1112
`which brew`.chomp.size > 0 and
1213
$?.success? and
1314
(openssl = `brew --prefix #{ENV["RBX_OPENSSL"] || "openssl"}`.chomp).size > 0

0 commit comments

Comments
 (0)