From 8af1e47588450b2ca9d4ba89afe711841b61141e Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Wed, 6 Jul 2016 17:04:08 -0400 Subject: [PATCH] [tests] Change location to download mlaunch, old one is not available anymore (#352) --- tests/xharness/Harness.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xharness/Harness.cs b/tests/xharness/Harness.cs index 55dd7cd9cf..b3b3fe8a99 100644 --- a/tests/xharness/Harness.cs +++ b/tests/xharness/Harness.cs @@ -89,7 +89,7 @@ namespace xharness string DownloadMlaunch () { // Just hardcode this for now. We should be able to switch to a shipped version of XS soon. - var mlaunch_url = "https://files.xamarin.com/~rolf/mlaunch-9d097ff4457cfc9943a91a4e17c07b09a7743625"; + var mlaunch_url = "https://bosstoragemirror.blob.core.windows.net/public-builder/mlaunch"; var mlaunch_path = Path.Combine (Path.GetTempPath (), Path.GetFileName (mlaunch_url), "mlaunch"); if (File.Exists (mlaunch_path)) return mlaunch_path;