]> asedeno.scripts.mit.edu Git - git.git/blobdiff - run-command.h
Merge branch 'lt/approxidate'
[git.git] / run-command.h
index ac6c09c8967793586eb3830e544f535a3a01ede5..0c00b25ff2ea8710a1d963619d633a9be1a6f626 100644 (file)
@@ -31,6 +31,7 @@ struct child_process {
        unsigned no_stdout:1;
        unsigned no_stderr:1;
        unsigned git_cmd:1; /* if this is to be git sub-command */
+       unsigned silent_exec_failure:1;
        unsigned stdout_to_stderr:1;
        void (*preexec_cb)(void);
 };
@@ -44,6 +45,7 @@ extern int run_hook(const char *index_file, const char *name, ...);
 #define RUN_COMMAND_NO_STDIN 1
 #define RUN_GIT_CMD         2  /*If this is to be git sub-command */
 #define RUN_COMMAND_STDOUT_TO_STDERR 4
+#define RUN_SILENT_EXEC_FAILURE 8
 int run_command_v_opt(const char **argv, int opt);
 
 /*