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 7b5cd5c commit e4b386eCopy full SHA for e4b386e
.github/workflows/mingw.yml
@@ -70,6 +70,19 @@ jobs:
70
with:
71
ruby-version: '3.2'
72
73
+ - name: Remove Strawberry Perl pkg-config
74
+ working-directory:
75
+ # `pkg-config.bat` included in Strawberry Perl is written in
76
+ # Perl and doesn't work when another msys2 `perl` precede its
77
+ # own `perl`.
78
+ #
79
+ # ```
80
+ # Can't find C:\Strawberry\perl\bin\pkg-config.bat on PATH, '.' not in PATH.
81
82
+ run: |
83
+ Get-Command pkg-config.bat | % { ren $_.path ($_.path + "~") }
84
+ shell: pwsh
85
+
86
- name: Misc system & package info
87
working-directory:
88
run: |
0 commit comments