Skip to content

Commit

Permalink
1.0.21.7: fix argument quoting in run-sbcl.sh
Browse files Browse the repository at this point in the history
 * Now things like

      sh run-sbcl.sh --eval '(load "foo.lisp")'

   should work correctly.
  • Loading branch information
nikodemus committed Oct 6, 2008
1 parent b3fc19f commit 2a03fda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion run-sbcl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [ -f sbcl-pwd.sh -a -x src/runtime/sbcl -a -f output/sbcl.core ]; then
. ./sbcl-pwd.sh
sbcl_pwd
echo "(running SBCL from: $SBCL_PWD)"
SBCL_HOME=$SBCL_PWD/contrib src/runtime/sbcl --core output/sbcl.core $@
SBCL_HOME=$SBCL_PWD/contrib src/runtime/sbcl --core output/sbcl.core "$@"
elif [ -f run-sbcl.sh -a -f version.lisp-expr ]; then
echo "No built SBCL here ($(pwd)): run 'sh make.sh' first!"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
"1.0.21.6"
"1.0.21.7"

0 comments on commit 2a03fda

Please sign in to comment.