From 1a6fc7ce77b9817672a61448ca9dc9dba39cc47d Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 13 Sep 2018 15:12:06 +0200 Subject: [PATCH] curl logging to stderr --- curl-artifact.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curl-artifact.sh b/curl-artifact.sh index 889caeec2bd..eef7ea9434f 100755 --- a/curl-artifact.sh +++ b/curl-artifact.sh @@ -3,7 +3,7 @@ task_id="$1" artifact="$2" shift 2 url="https://queue.taskcluster.net/v1/task/${task_id}/artifacts/${artifact}" -echo "Fetching $url" +echo "Fetching $url" >&2 curl \ --retry 5 \ --connect-timeout 10 \