Skip to content

Commit

Permalink
Merge pull request #2284 from neilccbrown/fix-mingw64-path
Browse files Browse the repository at this point in the history
Adjusted the path to mingw64 in the Windows automated Github build.
  • Loading branch information
neilccbrown authored Oct 19, 2023
2 parents 88820f7 + 992a27d commit c72b5ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
choco install ant -r --no-progress
- name: Check install locations
run: |
dir C:/ProgramData/chocolatey/lib/mingw/tools/install/mingw64/bin
dir C:/ProgramData/mingw64/mingw64/bin
dir 'C:/Program Files/'
dir 'C:/Program Files (x86)/'
dir 'C:/Program Files (x86)/WiX Toolset v3.11/bin'
Expand All @@ -45,7 +45,7 @@ jobs:
$propfile = 'tools.properties'
$java_home_forward = $env:JAVA_HOME -replace '\\', '/'
$workspace_forward = $PWD -replace '\\', '/'
(Get-Content $propfile) -replace 'mingw_root=.*', "mingw_root=C:/ProgramData/chocolatey/lib/mingw/tools/install/mingw64" | Set-Content $propfile
(Get-Content $propfile) -replace 'mingw_root=.*', "mingw_root=C:/ProgramData/mingw64/mingw64" | Set-Content $propfile
(Get-Content $propfile) -replace 'wix_bin=.*', "wix_bin=C:/Program Files (x86)/WiX Toolset v3.11/bin" | Set-Content $propfile
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@859c33240bd026ce8d5f711f5adcc65c2f8eafc1
Expand Down

0 comments on commit c72b5ae

Please sign in to comment.