Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 4ad4a06

Browse files
committed
update isKnownToBeMingwBuild function
1 parent a3d3c42 commit 4ad4a06

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ci/shared.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ function isLinux {
5353
}
5454

5555
function isKnownToBeMingwBuild {
56-
isGitHubActions && [[ "${CI_JOB_NAME}" == *mingw ]]
56+
# CI_JOB_NAME must contain "mingw" to be considered a MinGW build.
57+
isGitHubActions && [[ "${CI_JOB_NAME}" == *mingw* ]]
5758
}
5859

5960
function isCiBranch {

0 commit comments

Comments
 (0)