Skip to content

Commit b16249b

Browse files
committed
Forcibly uninstall gems even if there is a dependency problem.
1 parent 0eafafb commit b16249b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
3434
res = URI.parse("https://stdgems.org/bundled_gems.json").read
3535
bundled_gems = JSON.parse(res)["gems"].map{_1["gem"]}
36-
system "gem uninstall #{bundled_gems.join(" ")}", exception: true
36+
system "gem uninstall #{bundled_gems.join(" ")} --force", exception: true
3737
'
3838
- name: bundle install
3939
run: |

0 commit comments

Comments
 (0)