From 3dc6a812bf954120fc468a0458848ab27a01ecc0 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sat, 24 Sep 2022 20:34:35 +0100 Subject: [PATCH] reorder file load order in ritherdon-archive.asd file. I was getting errors when trying to quickload the system because a custom djula filter (defined in view.lisp) couldn't find one of the specific ritherdon-archive packages/files. I can't remember which one because I made the change earlier in the day and didn't commit the change at the time. --- ritherdon-archive.asd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ritherdon-archive.asd b/ritherdon-archive.asd index 0e5bad4..a76b73f 100644 --- a/ritherdon-archive.asd +++ b/ritherdon-archive.asd @@ -47,23 +47,23 @@ (:file "config") (:file "main") (:file "db") - (:file "view") + ;; Ritherdon Archive Specific Files (:file "app-constants") - (:file "status-codes") - (:file "utils") (:file "models/user") (:file "models/site-settings") (:file "models/pages") (:file "models/files") (:file "models/archive") + (:file "status-codes") + (:file "storage") + (:file "utils") (:file "auth") (:file "validation") (:file "nera") ; (Name of Database) - (:file "storage") ;; Caveman Files + (:file "view") (:file "web")) - :description "The Nicola Ellis & Ritherdon Archive." :in-order-to ((test-op (test-op "ritherdon-archive/tests"))))