From 64ba87978546e783e7055b52cb4125e9bfec25d3 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 22 May 2022 01:37:32 +0200 Subject: bundle.lisp: Include :com.inuoe.jzon dependencies Since :com.inuoe.jzon is a local dependency, its dependencies weren't being added to the bundle. Include them as well. We don't need to add a line for :sysexits as it doesn't have any dependencies. --- bundle.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bundle.lisp b/bundle.lisp index 8961589..309b24d 100644 --- a/bundle.lisp +++ b/bundle.lisp @@ -1,6 +1,8 @@ (setf ql:*local-project-directories* '("./lib")) -(let ((dependencies (asdf:system-depends-on (asdf:find-system :wajir))) +(let ((dependencies (append + (asdf:system-depends-on (asdf:find-system :wajir)) + (asdf:system-depends-on (asdf:find-system :com.inuoe.jzon)))) (local-dependencies '("com.inuoe.jzon" "sysexits"))) (ql:bundle-systems -- cgit v1.2.3