From 52f9cfa63cb83dd0a0d7bacc2045fb87c8857623 Mon Sep 17 00:00:00 2001 From: Brit Butler Date: Sun, 2 Nov 2014 20:24:34 -0500 Subject: [PATCH] Use separate eval statements for ccl in post-receive script. --- examples/example.post-receive | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/example.post-receive b/examples/example.post-receive index 698ae72..2c80cb0 100644 --- a/examples/example.post-receive +++ b/examples/example.post-receive @@ -27,7 +27,9 @@ while read oldrev newrev refname; do --eval "(coleslaw:main \"$TMP_GIT_CLONE\" \"$oldrev\")" \ --eval "(uiop:quit)" elif [ $LISP = ccl ]; then - ccl -e "(ql:quickload 'coleslaw) (coleslaw:main \"$TMP_GIT_CLONE\" \"$oldrev\") (uiop:quit)" + ccl -e "(ql:quickload 'coleslaw)" \ + -e "(coleslaw:main \"$TMP_GIT_CLONE\" \"$oldrev\")" \ + -e "(uiop:quit)" else echo -e "$LISP is not a supported lisp dialect at this time. Exiting.\n" exit 1