perf-lib: fix ignored exit code inside loop
commitecb590a9de231a3312527da023cd5b60328ae22e
authorJeff King <peff@peff.net>
Wed, 25 Mar 2015 05:25:55 +0000 (25 01:25 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 25 Mar 2015 17:21:23 +0000 (25 10:21 -0700)
tree323ee5c1a243b8105a53a42489da0659005135ec
parent65e6758767be228791a76e02e971c5565058ec79
perf-lib: fix ignored exit code inside loop

When copying the test repository, we try to detect whether
the copy succeeded. However, most of the heavy lifting is
done inside a for loop, where our "break" will lose the exit
code of the failing "cp". We can take advantage of the fact
that we are in a subshell, and just "exit 1" to break out
with a code.

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