Commit 52cb4040 by Patrick Steinhardt

azure: test: silence curl to not cause Azure to trop

Without the "--silent" parameter, curl will print a progress meter to
stderr. Azure has the nice feature of interpreting any output to stderr
as errors with a big red warning towards the end of the build. Let's
thus silence curl to not generate any misleading messages.
parent a3ec07d7
...@@ -84,7 +84,7 @@ if [ -z "$SKIP_GITDAEMON_TESTS" ]; then ...@@ -84,7 +84,7 @@ if [ -z "$SKIP_GITDAEMON_TESTS" ]; then
fi fi
if [ -z "$SKIP_PROXY_TESTS" ]; then if [ -z "$SKIP_PROXY_TESTS" ]; then
curl -L https://github.com/ethomson/poxyproxy/releases/download/v0.7.0/poxyproxy-0.7.0.jar >poxyproxy.jar curl --location --silent https://github.com/ethomson/poxyproxy/releases/download/v0.7.0/poxyproxy-0.7.0.jar >poxyproxy.jar
echo "" echo ""
echo "Starting HTTP proxy (Basic)..." echo "Starting HTTP proxy (Basic)..."
...@@ -96,7 +96,7 @@ if [ -z "$SKIP_PROXY_TESTS" ]; then ...@@ -96,7 +96,7 @@ if [ -z "$SKIP_PROXY_TESTS" ]; then
fi fi
if [ -z "$SKIP_NTLM_TESTS" ]; then if [ -z "$SKIP_NTLM_TESTS" ]; then
curl -L https://github.com/ethomson/poxygit/releases/download/v0.4.0/poxygit-0.4.0.jar >poxygit.jar curl --location --silent https://github.com/ethomson/poxygit/releases/download/v0.4.0/poxygit-0.4.0.jar >poxygit.jar
echo "" echo ""
echo "Starting HTTP server..." echo "Starting HTTP server..."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment