From d484749f527f5d86bf94dd357fccd9b3c9c3f871 Mon Sep 17 00:00:00 2001 From: Brit Butler Date: Sat, 25 Aug 2012 15:26:07 -0400 Subject: [PATCH] Update post-receive to eval statements separately. --- example.post-receive | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example.post-receive b/example.post-receive index afb89eb..dbf89d0 100644 --- a/example.post-receive +++ b/example.post-receive @@ -3,6 +3,7 @@ GIT_REPO=$HOME/improvedmeans.git TMP_GIT_CLONE=$HOME/tmp/improvedmeans git clone $GIT_REPO $TMP_GIT_CLONE -sbcl --eval "(progn (ql:quickload 'coleslaw) (coleslaw:main) (sb-ext:quit))" +sbcl --eval "(ql:quickload 'coleslaw)" --eval "(coleslaw:main)" \ + --eval "(sb-ext:quit))" rm -Rf $TMP_GIT_CLONE exit