mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
sbcl-pwd.sh: Fix when $OSTYPE is not set.
This commit is contained in:
parent
a129450e9b
commit
4082dec495
|
|
@ -4,7 +4,7 @@
|
|||
# This ensures that SBCL_PWD is a path understandable to SBCL.
|
||||
|
||||
sbcl_pwd() {
|
||||
case $OSTYPE in
|
||||
case "${OSTYPE:-}" in
|
||||
cygwin)
|
||||
SBCL_PWD="`cygpath -m \"$(pwd)\"`" ;;
|
||||
msys)
|
||||
|
|
|
|||
Loading…
Reference in a new issue