From 4b0e2c4f7182c9ed1f18c16d386d384717ab5c87 Mon Sep 17 00:00:00 2001 From: Paul Caskey Date: Thu, 11 Oct 2018 18:15:11 -0400 Subject: [PATCH] another bugfix --- tests/fulltest.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/fulltest.sh b/tests/fulltest.sh index 6b8902f..c8edcd1 100755 --- a/tests/fulltest.sh +++ b/tests/fulltest.sh @@ -13,14 +13,19 @@ pushd tests &>/dev/null rm -f lastpage.txt #ensure webisoget is installed +echo "ensuring that webisoget is installed..." rpm -q webisoget &>/dev/null if [ $? -ne '0' ]; then - curl -s -o webisoget-2.8.7-1.x86_64.rpm https://github.internet2.edu/docker/util/blob/master/bin/webisoget-2.8.7-1.x86_64.rpm + echo "downloading webisoget rpm" + curl -s -L -o webisoget-2.8.7-1.x86_64.rpm https://github.internet2.edu/docker/util/blob/master/bin/webisoget-2.8.7-1.x86_64.rpm if [ -s webisoget-2.8.7-1.x86_64.rpm ]; then + echo "installing rpm..." rpm -ivh webisoget-2.8.7-1.x86_64.rpm else echo "can't get webisoget rpm..." exit 1 +else + echo "webisoget already installed..." fi echo "Attempting full-cycle test..."