From 2c892e2b02e9adad4aabcb11b350d53c707de644 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 2 Aug 2016 18:14:28 +0200 Subject: [PATCH] [xharness] Get new mlaunch for beta 4. --- tests/xharness/Harness.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/xharness/Harness.cs b/tests/xharness/Harness.cs index b3b3fe8a997c..1804e6cab62c 100644 --- a/tests/xharness/Harness.cs +++ b/tests/xharness/Harness.cs @@ -89,7 +89,8 @@ public string XcodeRoot { string DownloadMlaunch () { // Just hardcode this for now. We should be able to switch to a shipped version of XS soon. - var mlaunch_url = "https://bosstoragemirror.blob.core.windows.net/public-builder/mlaunch"; + // NOTE: the filename part in the url must be unique so that the caching logic works properly. + var mlaunch_url = "http://bosstoragemirror.blob.core.windows.net/public-builder/mlaunch-ade5bd316053a4f747df13fd1e0386544ad223c5"; var mlaunch_path = Path.Combine (Path.GetTempPath (), Path.GetFileName (mlaunch_url), "mlaunch"); if (File.Exists (mlaunch_path)) return mlaunch_path;