Skip to content

Commit 4e75172

Browse files
committed
* sbcl-pwd.sh (sbcl_pwd): handle pwd for MSYS (use -W option) and other
systems (default to bare PWD)
1 parent 8cf982d commit 4e75172

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: sbcl-pwd.sh

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ sbcl_pwd() {
1111
wine)
1212
SBCL_PWD="`winepath -w \"$(pwd)\"`"
1313
;;
14+
msys)
15+
SBCL_PWD=$(pwd -W)
16+
;;
17+
*)
18+
SBCL_PWD=$(pwd)
19+
;;
1420
esac
1521
export SBCL_PWD
1622
}

0 commit comments

Comments
 (0)