Am 29.04.20 um 21:50 schrieb Taylor Blau: > This comment has nothing to do with your series, but I am curious if you > are planning on touching 'test_might_fail' at all. These can be useful > for non-Git commands, too, such as 'test_might_fail umask 022' on > systems that may or may not do something sensible with umask. When it's not a git command that might fail, the idiom is ... && { umask 022 || :; } && ... -- Hannes