From 241195c7bc74f7a4a5e580e24a3c731dea8b3ad1 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Thu, 13 Aug 2020 10:06:52 +0200 Subject: [PATCH] Use https://chunk.io for uploading Fixes #2711 --- Dangerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dangerfile b/Dangerfile index aaa19c33bc..c91f5c6da5 100644 --- a/Dangerfile +++ b/Dangerfile @@ -27,7 +27,7 @@ def upload_report end `tar -cf #{tar_filename} diff/` - report_url = `curl -u #{ENV['CHUNK_TOKEN']} -T #{tar_filename} chunk.io` + report_url = `curl -u #{ENV['CHUNK_TOKEN']} -T #{tar_filename} https://chunk.io` if $?.success? @logger.info "Successfully uploaded #{tar_filename} to chunk.io"