From: Frank Duncan Date: Thu, 9 Dec 2021 19:28:24 +0000 (-0600) Subject: Source registry should work from cwd, not cwd/src X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=candle;a=commitdiff_plain;h=01d3f5d1a5c7f05a77e3f817823a572200b1bada Source registry should work from cwd, not cwd/src --- diff --git a/bin/candle-server b/bin/candle-server index 4d00ac0..7e8e8ab 100755 --- a/bin/candle-server +++ b/bin/candle-server @@ -3,7 +3,7 @@ (setf *compile-print* nil) (require 'asdf) (asdf:initialize-source-registry - `(:source-registry (:tree ,(car (directory "src"))) :INHERIT-CONFIGURATION)) + `(:source-registry (:tree ,(car (directory "."))) :INHERIT-CONFIGURATION)) (asdf:load-system :candle) (asdf:load-system :opera)