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 0f391fe commit 67b9d8aCopy full SHA for 67b9d8a
.github/workflows/windows.yml
@@ -34,11 +34,8 @@ jobs:
34
res = URI.parse("https://stdgems.org/bundled_gems.json").read
35
bundled_gems = JSON.parse(res)["gems"].map{_1["gem"]}
36
bundled_gems.each do |gem|
37
- system "gem uninstall #{gem}", exception: true
38
- rescue Gem::DependencyRemovalException
39
- puts "Failed to uninstall #{gem}"
40
system "gem dependency --reverse-dependencies #{gem}"
41
- raise
+ system "gem uninstall #{gem}", exception: true
42
end
43
'
44
- name: bundle install
0 commit comments