Denton Liu <liu.denton@xxxxxxxxx> writes: > In one case, we were using a redirection operator to feed input into > sed. However, since sed is capable of opening its own files, make sed > open its own files instead of redirecting input into it. Could you please write in the commit message what advantages does this change bring? > Signed-off-by: Denton Liu <liu.denton@xxxxxxxxx> > --- > t/t4124-apply-ws-rule.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/t/t4124-apply-ws-rule.sh b/t/t4124-apply-ws-rule.sh > index 21a4adc73a..2b19ef9811 100755 > --- a/t/t4124-apply-ws-rule.sh > +++ b/t/t4124-apply-ws-rule.sh > @@ -42,7 +42,7 @@ apply_patch () { > shift > fi && > >target && > - sed -e "s|\([ab]\)/file|\1/target|" <patch | > + sed -e "s|\([ab]\)/file|\1/target|" patch | > $should_fail git apply "$@" > } -- Jakub Narębski