From 3d0f333deb4ffbc0d05ea096c57d090e46222fe3 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 26 Aug 2018 23:33:18 -0400 Subject: Don't clone wycheproof if we're doing a downstream test (#4416) * Don't clone wycheproof if we're doing a downstream test * you and your rules --- .travis/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.travis') diff --git a/.travis/install.sh b/.travis/install.sh index e3b20fdb..4debde55 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -41,7 +41,9 @@ elif [ -n "${LIBRESSL}" ]; then fi fi -git clone --depth=1 https://github.com/google/wycheproof $HOME/wycheproof +if [ -z "${DOWNSTREAM}" ]; then + git clone --depth=1 https://github.com/google/wycheproof $HOME/wycheproof +fi pip install virtualenv -- cgit v1.2.3