From 6569342f2ab621482934a593641e104d7a318e07 Mon Sep 17 00:00:00 2001 From: Willem Rein Oudshoorn Date: Tue, 2 Apr 2013 18:29:39 +0200 Subject: [PATCH] *injections* was never set to nil, so kept growing indefinetely --- src/coleslaw.lisp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/coleslaw.lisp b/src/coleslaw.lisp index 491bd34..ad08cad 100644 --- a/src/coleslaw.lisp +++ b/src/coleslaw.lisp @@ -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*))))