From 23b9e5c001a9ff31f3b0cdc8cb1ec7a27da038c0 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Fri, 17 Dec 2021 17:56:33 +0000 Subject: [PATCH] re-add parenthesis and re-balance rails-to-caveman.asd. I did not notice I added a comment at the end of the ':depends' on section which cause the closing parenthesis to become part of the comment. When I have tried to load the system (using ASDF), it was throwing errors because of this. I though I fix it in the previous commit but I just created a mess so good it fixed the problem -- at a basic functioning level. I do not know how the system was loading with the .asd in its previous state but it did. Anyway, here we are. '(asdf:load-system :rails-to-caveman)' should run on repeat now and not produce any errors... --- rails-to-caveman.asd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rails-to-caveman.asd b/rails-to-caveman.asd index b408b2e..9662ba3 100644 --- a/rails-to-caveman.asd +++ b/rails-to-caveman.asd @@ -20,6 +20,7 @@ "datafly" "sxql" "mito" ; <--- Added in Chapter 4. + ) :components ((:module "src" :components ((:file "main" :depends-on ("config" "view" "db")) @@ -29,4 +30,4 @@ (:file "model" :depends-on ("db")) ; <--- Chapter 4. (:file "config")))) :description "" - :in-order-to ((test-op (test-op "rails-to-caveman-test"))))) + :in-order-to ((test-op (test-op "rails-to-caveman-test"))))