From d0633515ccfb3c8f1429b572e01f265861bc9c81 Mon Sep 17 00:00:00 2001 From: Michael Tryby Date: Thu, 7 Mar 2019 08:40:37 -0500 Subject: [PATCH] Testing curl call --- tools/before-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/before-test.sh b/tools/before-test.sh index d2144f7..d4f3187 100755 --- a/tools/before-test.sh +++ b/tools/before-test.sh @@ -63,7 +63,7 @@ SUT_PATH=(`find $BUILD_HOME -name "bin" -type d`) # determine latest tag from GitHub API LATEST_URL="https://api.github.com/repos/openwateranalytics/epanet-example-networks/releases/latest" -LATEST_TAG=(`curl --silent ${LATEST_URL} | jq -r .tag_name`) +LATEST_TAG=(`curl ${LATEST_URL} | jq -r .tag_name`) if [ ${LATEST_TAG} == 'null' ]; then echo "ERROR: curl | jq - ${LATEST_URL}" exit 1