summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-07-18 10:54:12 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-07-18 10:54:12 -0400
commit6fd46b85f516d47626090e6c363b978519b3e1a3 (patch)
tree47db8e0b1a0c9910875a32c3e6bfd2afdaadc7de /.github/workflows
parent479fa3e1964d792ba9483b21b272d52f377f48a2 (diff)
SL-18837: Detect msys bash as well as cygwin for native_path et al.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index f0c7fdd496..9b56d800f7 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -99,7 +99,7 @@ jobs:
mkdir -p "$build_log_dir"
mkdir -p "$BUILDSCRIPTS_SHARED/packages/lib/python"
source "$BUILDSCRIPTS_SUPPORT_FUNCTIONS"
- if [[ "$OSTYPE" == "cygwin" ]]
+ if [[ "$OSTYPE" =~ cygwin|msys ]]
then
native_path() { cygpath --windows "$1"; }
shell_path() { cygpath --unix "$1"; }