Skip to content

Commit 78d01f5

Browse files
committed
Debug on windows CI
1 parent 4feab5e commit 78d01f5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
exit if "${{ matrix.ruby }}" != "ucrt" && "${{ matrix.ruby }}" != "mswin"
3030
bundled_gems = Dir.glob("D:/ruby-${{ matrix.ruby }}/lib/ruby/gems/*/cache/*.gem")
3131
.map { |path| File.basename(path, ".gem")[/^(.+)-[^-]+$/, 1] }
32-
system "gem uninstall #{bundled_gems.join(" ")}", exception: true
32+
bundled_gems.each do |gem|
33+
system "gem uninstall #{gem}", exception: true
34+
end
3335
'
3436
- name: bundle install
3537
run: |

0 commit comments

Comments
 (0)