summaryrefslogtreecommitdiffstats
path: root/site/posts
diff options
context:
space:
mode:
Diffstat (limited to 'site/posts')
-rw-r--r--site/posts/lisp-journey-getting-started.org4
1 files changed, 3 insertions, 1 deletions
diff --git a/site/posts/lisp-journey-getting-started.org b/site/posts/lisp-journey-getting-started.org
index b354034..3d8a6c1 100644
--- a/site/posts/lisp-journey-getting-started.org
+++ b/site/posts/lisp-journey-getting-started.org
@@ -219,7 +219,9 @@ file:
To bundle the game, we can use ~sbcl~ from our command line interface.
#+BEGIN_SRC bash
-sbcl --eval "(ql:quickload :lysk/bundle)" --eval "(lysk.bundle:deliver)" --quit
+sbcl --eval "(ql:quickload :lysk/bundle)" \
+ --eval "(lysk.bundle:deliver)" \
+ --quit
#+END_SRC
* Conclusion