From bbe72f97f967f62971d9847b9176e1002c07575e Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 12 Sep 2018 17:18:15 +0200 Subject: [PATCH] travis: Silence `git checkout` for Botan --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 301c3148e..25eca29f0 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -20,7 +20,7 @@ build_botan() git clone https://github.com/randombit/botan.git $BOTAN_DIR && cd $BOTAN_DIR && - git checkout $BOTAN_REV && + git checkout -qf $BOTAN_REV && python ./configure.py --amalgamation $BOTAN_CONFIG && make -j4 libs >/dev/null && sudo make install >/dev/null &&