diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-09-10 16:09:19 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-09-10 16:15:48 -0400 |
commit | 26dae8f04955915f4203fab4bd5301c959f7771a (patch) | |
tree | e109ef29617dc03bf92cc1cdba0d28b8d295ee3b /IkiWiki/Wrapper.pm | |
parent | 5ee980d77a614865747101615a6a795bec6f272f (diff) | |
download | ikiwiki-26dae8f04955915f4203fab4bd5301c959f7771a.tar ikiwiki-26dae8f04955915f4203fab4bd5301c959f7771a.tar.gz |
clean up use of IkiWiki::Receive
Loading and use of IkiWiki::Receive can all be pushed into the git plugin,
rather than scattered around.
I had at first wanted to make a receive plugin and move it there,
but a plugin was not a good fit; you don't want users to have to manually
load it, and making the git plugin load the receive plugin at the right
times would need more, and ugly code.
Diffstat (limited to 'IkiWiki/Wrapper.pm')
-rw-r--r-- | IkiWiki/Wrapper.pm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/IkiWiki/Wrapper.pm b/IkiWiki/Wrapper.pm index cf85738d6..ff110b5ff 100644 --- a/IkiWiki/Wrapper.pm +++ b/IkiWiki/Wrapper.pm @@ -37,10 +37,6 @@ sub gen_wrapper () { addenv("$var", s); EOF } - - if ($config{test_receive}) { - require IkiWiki::Receive; - } my @wrapper_hooks; run_hooks(genwrapper => sub { push @wrapper_hooks, shift->() }); |