Skip to content

Commit

Permalink
Merge pull request #1098 from appsignal/skip-rubygems-bundler-update-…
Browse files Browse the repository at this point in the history
…jruby

Skip RubyGems and Bundler update on JRuby
  • Loading branch information
unflxw authored Jun 18, 2024
2 parents 7c376b0 + 042adf8 commit d2aac33
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions support/install_deps
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ set -eu

gem_args="--no-verbose --no-document"

# Workaround for https://github.com/jruby/jruby/issues/7059
if [[ "${RUBY_VERSION}" == *"jruby"* ]]; then
echo "Skipping rubygems and bundler update for JRuby"
exit 0
fi

case "${_RUBYGEMS_VERSION-"latest"}" in
"latest")
echo "Updating rubygems"
Expand Down

0 comments on commit d2aac33

Please sign in to comment.