diff options
| author | Taylor Blau <me@ttaylorr.com> | 2022-11-08 17:15:09 -0500 |
|---|---|---|
| committer | Taylor Blau <me@ttaylorr.com> | 2022-11-08 17:15:09 -0500 |
| commit | 3e9303dc8e7c5798b5b83f1c1dfccb875db06b29 (patch) | |
| tree | 73c32c654dc74c341bee74388b199335511fad2a /archive-tar.c | |
| parent | ec9a46af4f1320b933a3d43bd8e8f055d350819a (diff) | |
| parent | 1e4ea950f7a83240e15f5e77369cf700b94e8759 (diff) | |
| download | git-3e9303dc8e7c5798b5b83f1c1dfccb875db06b29.tar.gz | |
Merge branch 'rs/archive-filter-error-once'
"git archive" mistakenly complained twice about a missing executable,
which has been corrected.
* rs/archive-filter-error-once:
archive-tar: report filter start error only once
Diffstat (limited to 'archive-tar.c')
| -rw-r--r-- | archive-tar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archive-tar.c b/archive-tar.c index 3e4822b684..f8fad2946e 100644 --- a/archive-tar.c +++ b/archive-tar.c @@ -498,6 +498,7 @@ static int write_tar_filter_archive(const struct archiver *ar, strvec_push(&filter.args, cmd.buf); filter.use_shell = 1; filter.in = -1; + filter.silent_exec_failure = 1; if (start_command(&filter) < 0) die_errno(_("unable to start '%s' filter"), cmd.buf); |
