Skip to content

Commit

Permalink
fix(compat): Use cygpath for MINGW (Git Bash) (#4409)
Browse files Browse the repository at this point in the history
(cherry picked from commit d7d260e)
  • Loading branch information
dahlbyk authored and merceyz committed Oct 21, 2023
1 parent 31ba6de commit 0e513bc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/dist-scripts/yarn
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 0e513bc

Please sign in to comment.