On Mon, Nov 29, 2021 at 3:38 PM Eric Sunshine <sunshine@xxxxxxxxxxxxxx> wrote: > > On Mon, Nov 29, 2021 at 6:10 PM Elijah Newren via GitGitGadget > <gitgitgadget@xxxxxxxxx> wrote: > > Changes since v3: > > * fixed bashism > > -+ if [[ $works == "success" ]]; then > > ++ if test "$works" == "success" > > This and any other instances in the series should be using POSIX `=`, > not Bash `==`. Ugh, I had them removed by the end of the series but somehow missed checking the earlier patch. I'll fix it up; thanks for spotting.