9 lines
269 B
Text
9 lines
269 B
Text
GIT_REPO=$HOME/lisp-is-fun.git
|
|
# TMP_GIT_CLONE _must_ match the :repo arg in coleslawrc excluding trailing slash
|
|
TMP_GIT_CLONE=$HOME/lisp-is-fun/tmp
|
|
|
|
git clone $GIT_REPO $TMP_GIT_CLONE
|
|
echo "(ql:quickload :coleslaw)
|
|
(coleslaw:main)" | ccl -b
|
|
rm -Rf $TMP_GIT_CLONE
|
|
exit
|