]> git.ipfire.org Git - thirdparty/git.git/commit
t7001: modernize subshell formatting
authorShubham Verma <shubhunic@gmail.com>
Thu, 11 Feb 2021 19:46:58 +0000 (01:16 +0530)
committerJunio C Hamano <gitster@pobox.com>
Thu, 11 Feb 2021 21:42:16 +0000 (13:42 -0800)
commit9bcaeb71a63e3f13b859202813d8c95047902b27
tree4045341115c3b67fd6004ac1a7937ae0f081bc0f
parent9b46e9c9cc6787cbf88d18c143006316928e3aa3
t7001: modernize subshell formatting

Some test use an old style for formatting subshells:

        (command &&
            ...

Update them to the modern style:

        (
            command &&
            ...

Signed-off-by: Shubham Verma <shubhunic@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7001-mv.sh