diff options
author | Shourya Shukla <shouryashukla.oo@gmail.com> | 2020-08-21 18:59:48 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-08-21 20:47:55 +0200 |
commit | 94e06c905740eaec7501fc026598b5839cc63fba (patch) | |
tree | e773936025b8f942dc57662a8c0a017139eb7f7b /t/t7401-submodule-summary.sh | |
parent | Sixth batch (diff) | |
download | git-94e06c905740eaec7501fc026598b5839cc63fba.tar.xz git-94e06c905740eaec7501fc026598b5839cc63fba.zip |
t7401: modernize style
The tests in 't7401-submodule-summary.sh' were written a long time ago
and has a violation with respect to our CodingGuidelines which is,
incorrect spacing in usages of the redirection operator.
Mentored-by: Christian Couder <chriscool@tuxfamily.org>
Mentored-by: Kaartic Sivaraam <kaartic.sivaraam@gmail.com>
Helped-by: Denton Liu <liu.denton@gmail.com>
Helped-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Shourya Shukla <shouryashukla.oo@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7401-submodule-summary.sh')
-rwxr-xr-x | t/t7401-submodule-summary.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7401-submodule-summary.sh b/t/t7401-submodule-summary.sh index 9bc841d085..07d4ba0b26 100755 --- a/t/t7401-submodule-summary.sh +++ b/t/t7401-submodule-summary.sh @@ -16,7 +16,7 @@ add_file () { owd=$(pwd) cd "$sm" for name; do - echo "$name" > "$name" && + echo "$name" >"$name" && git add "$name" && test_tick && git commit -m "Add $name" |