On Sun, Aug 19, 2018 at 1:54 PM brian m. carlson <sandals@xxxxxxxxxxxxxxxxxxxx> wrote: > We transform various object IDs into all-zero object IDs for comparison. > Adjust the length as well so that this works for all hash algorithms. > > Signed-off-by: brian m. carlson <sandals@xxxxxxxxxxxxxxxxxxxx> > --- > diff --git a/t/t0027-auto-crlf.sh b/t/t0027-auto-crlf.sh > @@ -15,8 +15,9 @@ compare_ws_file () { > - tr '\015\000abcdef0123456789' QN00000000000000000 <"$2" >"$exp" && > + tr '\015\000abcdef0123456789' QN00000000000000000 <"$2" >"$exp+" && My immediate thought upon reading this was whether "+" is valid in Windows filenames. Apparently, it is, but perhaps (if you re-roll) it would make sense to use a character less likely to cause brain hiccups; for instance, "exp0'. > tr '\015\000abcdef0123456789' QN00000000000000000 <"$3" >"$act" && > + sed -e "s/0000+/$ZERO_OID/" "$exp+" >"$exp" &&