From d4347f657683d793c2e56f5ef93802d582db3562 Mon Sep 17 00:00:00 2001 From: Frank Duncan Date: Fri, 13 Aug 2021 15:25:30 -0500 Subject: [PATCH] Make it so the candle script loads asdf based on its location --- bin/candle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/candle b/bin/candle index ee68498..7e985d6 100755 --- a/bin/candle +++ b/bin/candle @@ -3,7 +3,7 @@ (setf *compile-print* nil) (require 'asdf) (asdf:initialize-source-registry - `(:source-registry (:tree ,(car (directory "."))) :INHERIT-CONFIGURATION)) + `(:source-registry (:tree ,(make-pathname :directory (butlast (pathname-directory *load-truename*)))) :INHERIT-CONFIGURATION)) (asdf:load-system :candle) (candle-cli:run) -- 2.25.1