Skip to content

Commit

Permalink
Merge pull request #246 from bdunne/bundler_reinstall
Browse files Browse the repository at this point in the history
Ensure that the bundler version in the script matches the container

(cherry picked from commit 769553a)
  • Loading branch information
Fryguy committed Jan 24, 2022
1 parent 422e0c7 commit 82af4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/manageiq/rpm_build/generate_gemset.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def restore_environment_variables
def recreate_gem_home
FileUtils.rm_rf(GEM_HOME) if GEM_HOME.exist?
FileUtils.mkdir(GEM_HOME)
cmd = "gem install bundler"
cmd = "gem install bundler:#{`bundle -v`.chomp.split(" ").last}"
shell_cmd(cmd)
end

Expand Down

0 comments on commit 82af4a7

Please sign in to comment.