Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sdks
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2021-05-07 18:44:22 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2021-05-10 16:37:39 +0300
commitac0aa75f6bde9700d82fe18ed2244c7dadc74f65 (patch)
treeec4ad7b01fcc262ad8a94a328b33ae6c78e359cb /sdks
parentbffb38253c27390d750985d36ac86a0266d4d657 (diff)
sdks: Use https for xamjenkinsartifacts llvm archive download
Accessing the storage account fails now when using plain http.
Diffstat (limited to 'sdks')
-rw-r--r--sdks/builds/llvm.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdks/builds/llvm.mk b/sdks/builds/llvm.mk
index 95fef0cb208..d99a3f3a4fe 100644
--- a/sdks/builds/llvm.mk
+++ b/sdks/builds/llvm.mk
@@ -7,7 +7,7 @@
define LLVMProvisionTemplate
_$(1)-$(2)_HASH = $$(shell git -C $(3) rev-parse HEAD)
_$(1)-$(2)_PACKAGE = $(1)-$(2)-$$(_$(1)-$(2)_HASH)-$$(UNAME).tar.gz
-_$(1)-$(2)_URL = "http://xamjenkinsartifact.blob.core.windows.net/mono-sdks/$$(_$(1)-$(2)_PACKAGE)"
+_$(1)-$(2)_URL = "https://xamjenkinsartifact.blob.core.windows.net/mono-sdks/$$(_$(1)-$(2)_PACKAGE)"
$$(TOP)/sdks/out/$(1)-$(2)/.stamp-download:
curl --location --silent --show-error $$(_$(1)-$(2)_URL) | tar -xvzf - -C $$(dir $$@)