|
@@ -1,6 +1,6 @@
|
1
|
1
|
########## CONFIGURATION VALUES ##########
|
2
|
2
|
|
3
|
|
-# TMP_GIT_CLONE _must_ match one of the following in coleslawrc:
|
|
3
|
+# TMP_GIT_CLONE _must_ match one of the following in coleslawrc:
|
4
|
4
|
# * The :repo argument (for a single-site setup) _or_
|
5
|
5
|
# * An alist key (for a multi-site setup)
|
6
|
6
|
TMP_GIT_CLONE=$HOME/tmp/improvedmeans/
|
|
@@ -23,9 +23,11 @@ fi
|
23
|
23
|
git clone $GIT_REPO $TMP_GIT_CLONE || exit 1
|
24
|
24
|
|
25
|
25
|
if [ $LISP = sbcl ]; then
|
26
|
|
- sbcl --eval "(ql:quickload 'coleslaw)" --eval "(coleslaw:main \"$TMP_GIT_CLONE\")"
|
|
26
|
+ sbcl --eval "(ql:quickload 'coleslaw)" \
|
|
27
|
+ --eval "(coleslaw:main \"$TMP_GIT_CLONE\")" \
|
|
28
|
+ --eval "(coleslaw::exit)"
|
27
|
29
|
elif [ $LISP = ccl ]; then
|
28
|
|
- echo "(ql:quickload 'coleslaw)(coleslaw:main \"$TMP_GIT_CLONE\")" | ccl -b
|
|
30
|
+ echo "(ql:quickload 'coleslaw)(coleslaw:main \"$TMP_GIT_CLONE\")(coleslaw::exit)" | ccl -b
|
29
|
31
|
else
|
30
|
32
|
exit 1
|
31
|
33
|
fi
|