From 09fa5a3afb070affc11bf10f47065437b4063dac Mon Sep 17 00:00:00 2001 From: Keith Dahlby Date: Thu, 28 Apr 2022 09:00:38 -0500 Subject: [PATCH] fix(compat): Use cygpath for MINGW (Git Bash) --- scripts/dist-scripts/yarn | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/dist-scripts/yarn b/scripts/dist-scripts/yarn index 82823026883c..ac728b9424ed 100755 --- a/scripts/dist-scripts/yarn +++ b/scripts/dist-scripts/yarn @@ -7,6 +7,7 @@ case "$(uname -s)" in Linux) basedir=$(dirname "$(readlink -f "$0" || echo "$argv0")");; *CYGWIN*) basedir=`cygpath -w "$basedir"`;; *MSYS*) basedir=`cygpath -w "$basedir"`;; + *MINGW*) basedir=`cygpath -w "$basedir"`;; esac command_exists() {