From 05bf607f2198264fb5c673ae7c17998bd1767414 Mon Sep 17 00:00:00 2001 From: Erik Huelsmann <ehuels@gmail.com> Date: Tue, 9 Oct 2018 17:44:22 +0000 Subject: [PATCH] Simplify calling the hook to build the site --- build.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.lisp b/build.lisp index ddbd8d9..3448c73 100644 --- a/build.lisp +++ b/build.lisp @@ -1,3 +1,3 @@ (push (uiop:getcwd) quicklisp:*local-project-directories*) (ql:quickload :cl-site) -(funcall (symbol-function (intern "MAKE-SITE" :cl-site)) (merge-pathnames "output/" (uiop:getcwd))) +(cl-site::make-site (merge-pathnames "output/" (uiop:getcwd))) -- GitLab