From 7a8890df50a6bb74fc8d53d1ea359191404fcd65 Mon Sep 17 00:00:00 2001 From: Alan Jeffrey Date: Wed, 24 Jan 2018 09:54:52 -0600 Subject: [PATCH] Added --progress flag to test-perf git commands --- etc/ci/performance/test_perf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/ci/performance/test_perf.sh b/etc/ci/performance/test_perf.sh index b2b7adc1594..2b97eb9a6e6 100755 --- a/etc/ci/performance/test_perf.sh +++ b/etc/ci/performance/test_perf.sh @@ -31,11 +31,11 @@ WARC_REPO="git@github.com:servo/servo-warc-tests.git" # Clone the warc tests if they don't exist if [[ ! -d ${WARC_DIR} ]]; then - git clone ${WARC_REPO} + git clone --progress ${WARC_REPO} fi # Make sure we're running with an up-to-date warc test repo -git -C ${WARC_DIR} pull +git -C ${WARC_DIR} pull --progress virtualenv venv --python="$(which python3)" PS1="" source venv/bin/activate