Skip to content

Commit

Permalink
ci: adjusted env parths of mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelCastilloB committed Nov 28, 2024
1 parent 6058f76 commit 55e4944
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows-mingw-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
echo "Verifying extracted files..."
ls "$ExtractDir"
# Dynamically locate the MinGW directory
MingwDir=$(find "$ExtractDir" -type d -name "mingw32" | head -n 1)
# Dynamically locate the MinGW directory (mingw32 or mingw64)
MingwDir=$(find "$ExtractDir" -type d \( -name "mingw32" -o -name "mingw64" \) | head -n 1)
if [ -z "$MingwDir" ]; then
echo "Error: Could not locate the MinGW directory!"
Expand Down

0 comments on commit 55e4944

Please sign in to comment.