|
@@ -25,9 +25,9 @@ while read oldrev newrev refname; do
|
25
|
25
|
if [ $LISP = sbcl ]; then
|
26
|
26
|
sbcl --eval "(ql:quickload 'coleslaw)" \
|
27
|
27
|
--eval "(coleslaw:main \"$TMP_GIT_CLONE\" \"$oldrev\")" \
|
28
|
|
- --eval "(coleslaw::exit)"
|
|
28
|
+ --eval "(uiop:quit)"
|
29
|
29
|
elif [ $LISP = ccl ]; then
|
30
|
|
- ccl -e "(ql:quickload 'coleslaw) (coleslaw:main \"$TMP_GIT_CLONE\" \"$oldrev\") (coleslaw::exit)"
|
|
30
|
+ ccl -e "(ql:quickload 'coleslaw) (coleslaw:main \"$TMP_GIT_CLONE\" \"$oldrev\") (uiop:quit)"
|
31
|
31
|
else
|
32
|
32
|
echo -e "$LISP is not a supported lisp dialect at this time. Exiting.\n"
|
33
|
33
|
exit 1
|