Skip to content

Commit d2aac33

Browse files
authored
Merge pull request #1098 from appsignal/skip-rubygems-bundler-update-jruby
Skip RubyGems and Bundler update on JRuby
2 parents 7c376b0 + 042adf8 commit d2aac33

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

support/install_deps

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ set -eu
44

55
gem_args="--no-verbose --no-document"
66

7+
# Workaround for https://github.com/jruby/jruby/issues/7059
8+
if [[ "${RUBY_VERSION}" == *"jruby"* ]]; then
9+
echo "Skipping rubygems and bundler update for JRuby"
10+
exit 0
11+
fi
12+
713
case "${_RUBYGEMS_VERSION-"latest"}" in
814
"latest")
915
echo "Updating rubygems"

0 commit comments

Comments
 (0)