Use separate eval statements for ccl in post-receive script.
This commit is contained in:
parent
6073122961
commit
52f9cfa63c
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue