Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/5459

The 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;....
```