git: Added git_wrapper_background_command option. Can be used to eg, make the git...
[ikiwiki.git] / IkiWiki / Plugin / git.pm
index 992c6226b6b69f859b80458fb6b21da52a28a49c..0f92476c94403df7b52a28f62e0f4a17d5988794 100644 (file)
@@ -41,6 +41,7 @@ sub checkconfig () {
                push @{$config{wrappers}}, {
                        wrapper => $config{git_wrapper},
                        wrappermode => (defined $config{git_wrappermode} ? $config{git_wrappermode} : "06755"),
+                       wrapper_background_command => $config{git_wrapper_background_command},
                };
        }
 
@@ -78,6 +79,13 @@ sub getsetup () {
                        safe => 0, # file
                        rebuild => 0,
                },
+               git_wrapper_background_command => {
+                       type => "string",
+                       example => "git push github",
+                       description => "shell command for git_wrapper to run, in the background",
+                       safe => 0, # command
+                       rebuild => 0,
+               },
                git_wrappermode => {
                        type => "string",
                        example => '06755',