t5310: fix "; do" style
commitda5a1f81008f89f4e533006df8fa536e43c9c677
authorJeff King <peff@peff.net>
Tue, 9 May 2017 02:59:46 +0000 (8 22:59 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 9 May 2017 03:09:03 +0000 (9 12:09 +0900)
treeab1138031e1b337ef5e428c1fc8b766d6a700787
parent9df4a6074a98740b70b980d43dca5203db0ff688
t5310: fix "; do" style

Our usual shell style is to put the "do" of a loop on its
own line, like:

  while $cond
  do
          something
  done

instead of:

  while $cond; do
          something
  done

We have a bit of both in our code base, but the former is
what's in CodingGuidelines (and outnumbers the latter in t/
by about 6:1).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5310-pack-bitmaps.sh