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.
1 parent 2054401 commit c6e924eCopy full SHA for c6e924e
bin/ruby-build
@@ -747,6 +747,11 @@ build_package_jruby() {
747
748
install_jruby_launcher() {
749
cd "${PREFIX_PATH}/bin"
750
+ # workaround for https://github.com/jruby/jruby/issues/7799
751
+ local jruby_version
752
+ jruby_version="$(./ruby -e 'puts JRUBY_VERSION' 2>/dev/null)"
753
+ [[ $jruby_version != "9.2."* ]] ||
754
+ ./ruby gem update -q --silent --system 3.3.26 --no-document --no-post-install-message >&4 2>&1
755
{ ./ruby gem install jruby-launcher
756
} >&4 2>&1
757
}
test/build.bats
@@ -589,6 +589,7 @@ DEF
589
assert_success
590
591
assert_build_log <<OUT
592
+jruby -e puts JRUBY_VERSION
593
jruby gem install jruby-launcher
594
OUT
595
0 commit comments