summaryrefslogtreecommitdiffstats
path: root/site/posts
diff options
context:
space:
mode:
authorThomas Letan <lthms@soap.coffee>2020-02-04 20:58:25 +0100
committerThomas Letan <lthms@soap.coffee>2020-02-04 20:58:25 +0100
commited3ce3ec850b416d449c32f000467c83cbe2fe20 (patch)
tree4e49c5f4e357d657741efae2e4f1f5875e487c88 /site/posts
parentInitial commit with previous content and a minimal theme (diff)
Various fixes related to absolute URLs
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