perf: Correct cairo-perf-diff syntax

{ cmd-list; } seems to literally be the required syntax. Blanks and
';' are both mandatory.
This commit is contained in:
Andrea Canciani 2010-04-09 08:28:33 +02:00
parent 6986970ea5
commit 061ea78ad2

View file

@ -214,7 +214,7 @@ run_cairo_perf_if_not_cached() {
}
echo "Running \"cairo-perf $CAIRO_PERF_OPTIONS\" against $rev. Results will be cached in:"
{./$benchmark $CAIRO_PERF_OPTIONS || echo "*** Performance test crashed"} >> $perf
{ ./$benchmark $CAIRO_PERF_OPTIONS || echo "*** Performance test crashed"; } >> $perf
cd $owd
}