• J
    t5310: fix "; do" style · da5a1f81
    Jeff King 提交于
    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: NJeff King <peff@peff.net>
    Signed-off-by: NJunio C Hamano <gitster@pobox.com>
    da5a1f81
t5310-pack-bitmaps.sh 9.9 KB