Merge pull request #19 from woudshoo/injections-growth
*injections* was never set to nil, so kept growing indefinitely
This commit is contained in:
commit
23f2cb16e3
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)
|
(defun main (config-key)
|
||||||
"Load the user's config section corresponding to CONFIG-KEY, then
|
"Load the user's config section corresponding to CONFIG-KEY, then
|
||||||
compile and deploy the blog."
|
compile and deploy the blog."
|
||||||
(load-config config-key)
|
(let (*injections*)
|
||||||
(load-content)
|
(load-config config-key)
|
||||||
(compile-theme (theme *config*))
|
(load-content)
|
||||||
(compile-blog (staging *config*))
|
(compile-theme (theme *config*))
|
||||||
(deploy (staging *config*)))
|
(compile-blog (staging *config*))
|
||||||
|
(deploy (staging *config*))))
|
||||||
|
|
Loading…
Add table
Reference in a new issue