about summary refs log tree commit diff
path: root/filter.c
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-01-30 19:08:11 +0100
committerRory& <root@rory.gay>2026-01-30 19:08:11 +0100
commit09592ab965dabdbecc030464604fabcd22c182a0 (patch)
tree916bcebeb8dc53c5dc4f24c7b7a86658632cceb2 /filter.c
parentUpdate flake.lock to reflect git update (diff)
downloadcgit-magenta-dev/tarball-cache.tar.xz
WIP: old changes dev/tarball-cache
Diffstat (limited to '')
-rw-r--r--filter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/filter.c b/filter.c

index 8fc14e1..0bcd5d7 100644 --- a/filter.c +++ b/filter.c
@@ -51,6 +51,7 @@ static int open_exec_filter(struct cgit_filter *base, va_list ap) close(pipe_fh[1]); chk_non_negative(dup2(pipe_fh[0], STDIN_FILENO), "Unable to use pipe as STDIN"); + fprintf(stderr, "exec: %s\n", filter->cmd); execvp(filter->cmd, filter->argv); die_errno("Unable to exec subprocess %s", filter->cmd); }