Pádraig Brady <[email protected]> writes: > On 18/06/2026 04:52, Collin Funk wrote: >> reset_files () >> +{ >> + rm -rf a b c || framework_failure_ >> + mkdir a b c || framework_failure_ >> + cat exp-a > a/f || framework_failure_ >> + cat exp-b > b/f || framework_failure_ >> +} > > I'd probably change the above to: > > rm ... && > mkdir ... && > cat ... && > cat ... || framework_failure_ > > Otherwise, LGTM.
Thanks for checking. I pushed with that change and doing s/move/mv/ on the commit message. Collin
