mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
14 lines
292 B
Bash
14 lines
292 B
Bash
#!/bin/false
|
|
# Not a shell script, but something intended to be sourced from shell scripts
|
|
|
|
# This ensures that SBCL_PWD is a path understandable to SBCL.
|
|
|
|
sbcl_pwd() {
|
|
if [ "$OSTYPE" = "cygwin" ] ; then
|
|
SBCL_PWD=`cygpath -m $(pwd)`
|
|
else
|
|
SBCL_PWD=`pwd`
|
|
fi
|
|
export SBCL_PWD
|
|
}
|