Skip to content
  • Jeff King's avatar
    trailer: use capture_command · c5eadcaa
    Jeff King authored and Junio C Hamano's avatar Junio C Hamano committed
    
    
    When we read from a trailer.*.command sub-program, the
    current code uses run_command followed by a pipe read, which
    can result in deadlock (though in practice you would have to
    have a large trailer for this to be a problem). The current
    code also leaks the file descriptor for the pipe to the
    sub-command.
    
    Instead, let's use capture_command, which makes this simpler
    (and we can get rid of our custom helper).
    
    Signed-off-by: default avatarJeff King <peff@peff.net>
    Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
    c5eadcaa