t7700: do not use "touch" unnecessarily
commita0332337be53f266682279c72a5e553986638c87
authorJeff King <peff@peff.net>
Thu, 23 Jan 2014 19:55:18 +0000 (23 14:55 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 23 Jan 2014 21:13:20 +0000 (23 13:13 -0800)
tree4dd146bb22c77057023cda61341a3015e738fa7f
parent088304bf73b9b4149e04d2246fe08a06eef6e795
t7700: do not use "touch" unnecessarily

Some versions of touch (such as /usr/ucb/touch on Solaris)
do not know about the "-r" option. This would make sense as
a feature of test-chmtime, but fortunately this fix is even
easier.

The test does not care about the timestamp of the .keep file it
creates at all, only that it exists. For such a use case, with or
without portability issues around "-r", "touch" should not be used
in the first place.

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