summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2020-09-08 19:28:06 -0500
committerColin Okay <cbeok@protonmail.com>2020-10-12 09:37:42 -0500
commitca6b30e1b3a33d93c11426b8f38a0c3d7518ed28 (patch)
tree79e2b758f6afb55667f7a931ea3c019e1eacc2f2
parent1d4d4faf0b0eb734d17e65d30c4d08b64bae695b (diff)
addec compression to save-lisp-and-die
-rw-r--r--build.lisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.lisp b/build.lisp
index 60a9b6a..9e98804 100644
--- a/build.lisp
+++ b/build.lisp
@@ -13,6 +13,8 @@
(format t " SHEET-TITLE a name used for this sheet and its meta info~%~%"))
+
+
#+sbcl
(progn
(defun main ()
@@ -23,5 +25,5 @@
(imbricate:imbricate-and-save src target title)
(uiop:quit)))
- (sb-ext:save-lisp-and-die #p"imbricate" :toplevel #'main :executable t))
+ (sb-ext:save-lisp-and-die #p"imbricate" :toplevel #'main :executable t :compression t))