projects
/
candle
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Source registry should work from cwd, not cwd/src
[candle]
/
bin
/
candle
1
#!/usr/bin/sbcl --script
2
3
(setf *compile-print* nil)
4
(require 'asdf)
5
(asdf:initialize-source-registry
6
`(:source-registry (:tree ,(make-pathname :directory (butlast (pathname-directory *load-truename*)))) :INHERIT-CONFIGURATION))
7
(asdf:load-system :candle)
8
(candle-cli:run)
9
10
; vim:ft=lisp