*injections* was never set to nil, so kept growing indefinetely
This commit is contained in:
parent
9bc2e55d58
commit
6569342f2a
1 changed files with 6 additions and 5 deletions
|
@ -75,8 +75,9 @@ Additional args to render CONTENT can be passed via RENDER-ARGS."
|
|||
(defun main (config-key)
|
||||
"Load the user's config section corresponding to CONFIG-KEY, then
|
||||
compile and deploy the blog."
|
||||
(load-config config-key)
|
||||
(load-content)
|
||||
(compile-theme (theme *config*))
|
||||
(compile-blog (staging *config*))
|
||||
(deploy (staging *config*)))
|
||||
(let (*injections*)
|
||||
(load-config config-key)
|
||||
(load-content)
|
||||
(compile-theme (theme *config*))
|
||||
(compile-blog (staging *config*))
|
||||
(deploy (staging *config*))))
|
||||
|
|
Loading…
Add table
Reference in a new issue