]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Wrapper.pm
make success and failreason objects carry an influences hash
[ikiwiki.git] / IkiWiki / Wrapper.pm
index 53ac5099ac1e197ecac11f0cbbf09562a3aeed91..ff110b5ffb9763cb5fbb9248c0b5d95bc52fb5e1 100644 (file)
@@ -41,9 +41,6 @@ EOF
        my @wrapper_hooks;
        run_hooks(genwrapper => sub { push @wrapper_hooks, shift->() });
 
-       my $check_args="        return 0;";
-       run_hooks(wrapperargcheck => sub { $check_args = shift->(); });
-
        my $check_commit_hook="";
        my $pre_exec="";
        if ($config{post_commit}) {
@@ -116,16 +113,9 @@ addenv(char *var, char *val) {
        newenviron[i++]=s;
 }
 
-int checkargs(int argc, char **argv) {
-$check_args
-}
-
 int main (int argc, char **argv) {
        char *s;
 
-       if (!checkargs(argc, argv))
-               exit(0);
-
 $check_commit_hook
 @wrapper_hooks
 $envsave