We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd0f332 + 986c1e3 commit fd0460eCopy full SHA for fd0460e
bin/ruby-build
@@ -889,7 +889,12 @@ install_jruby_launcher() {
889
# workaround for https://github.com/jruby/jruby/issues/7799
890
[[ $1 != "jruby-9.2."* ]] ||
891
capture_command ./ruby gem update -q --silent --system 3.3.26 --no-document --no-post-install-message
892
- capture_command ./ruby gem install jruby-launcher --no-document
+ if [[ $1 == "jruby-9.3."* ]]; then
893
+ # workaround for https://github.com/rbenv/ruby-build/issues/2550
894
+ capture_command ./ruby gem install jruby-launcher --version '<2' --no-document
895
+ else
896
+ capture_command ./ruby gem install jruby-launcher --no-document
897
+ fi
898
}
899
900
fix_jruby_shebangs() {
0 commit comments