rbenv-ruby-build/share/ruby-build/jruby-dev
Mislav Marohnić 99fda28fc4 JRuby: remove openssl@1.1 requirement from jruby-dev
This is to allow JRuby itself to check for compatible OpenSSL versions and not have ruby-build abort early on macOS.
2023-10-20 15:09:45 +02:00

12 lines
400 B
Text

case $(uname -s) in
Linux)
install_package "jruby-head" "https://github.com/ruby/jruby-dev-builder/releases/latest/download/jruby-head-ubuntu-20.04.tar.gz" jruby
;;
Darwin)
install_package "jruby-head" "https://github.com/ruby/jruby-dev-builder/releases/latest/download/jruby-head-macos-latest.tar.gz" jruby
;;
*)
colorize 1 "Unsupported operating system: $(uname -s)"
return 1
;;
esac