Merge pull request #175 from kasal/normalize-win-paths

fixup! Windows: Always normalize paths to Windows-style
This commit is contained in:
dscho
2014-04-28 12:46:21 -05:00

View File

@@ -306,8 +306,10 @@ case $(uname -s) in
find () {
/usr/bin/find "$@"
}
# Let pwd always return the uniqe real windows path
alias pwd='pwd -W'
# git sees Windows-style pwd
pwd () {
builtin pwd -W
}
is_absolute_path () {
case "$1" in
[/\\]* | [A-Za-z]:*)