diff options
author | Teddy Wing | 2022-05-22 01:37:32 +0200 |
---|---|---|
committer | Teddy Wing | 2022-05-22 01:37:32 +0200 |
commit | 64ba87978546e783e7055b52cb4125e9bfec25d3 (patch) | |
tree | 416bc088de64f6d615c0eeeeef2f89f76be47eb0 | |
parent | d60689ab2f00bd04c7ff39429b3f65615426da56 (diff) | |
download | wajir-64ba87978546e783e7055b52cb4125e9bfec25d3.tar.bz2 |
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.
-rw-r--r-- | bundle.lisp | 4 |
1 files changed, 3 insertions, 1 deletions
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 |