Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kzrnm/fix-mingw
Fix mingw path
https://github.com/kzrnm/fix-mingw
Last synced: 26 days ago
JSON representation
Fix mingw path
- Host: GitHub
- URL: https://github.com/kzrnm/fix-mingw
- Owner: kzrnm
- License: mit
- Created: 2022-12-12T14:34:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-30T10:32:10.000Z (about 1 year ago)
- Last Synced: 2024-11-17T20:51:48.722Z (about 1 month ago)
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fix MinGW
In GitHub Actions `windows-2022` runner, `gcc` of MinGW is hidden by Strawberry.
https://github.com/actions/runner-images/issues/5459The action fix the problem.
## What the action doing?
Rewrite `$PATH`.
old
```
.......;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;.....;C:\Program Files\Git\mingw64\bin;....
```new
```
C:\Program Files\Git\mingw64\bin;.......;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;.....;C:\Program Files\Git\mingw64\bin;....
```