Skip to content

Commit

Permalink
Merge pull request erlang#2776 from dgud/dgud/win32/missing-redist/ER…
Browse files Browse the repository at this point in the history
…L-1362/OTP-16903

Handle paths with spaces
  • Loading branch information
dgud authored Oct 2, 2020
2 parents 85d0a13 + ea3bd8a commit ecffa11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erts/etc/win32/wsl_tools/w32_path.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ else
esac
exit 0
else
dir=`dirname $1`
file=`basename $1`
dir=`dirname "$1"`
file=`basename "$1"`

case "$SEPARATOR" in
slash)
Expand Down

0 comments on commit ecffa11

Please sign in to comment.