-
-
Save rolfbjarne/1bee2476744c485283dfddf719603159 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 621e091808ea64f9caa8bb5cbe0070097bb8e3c6 | |
Author: Rolf Bjarne Kvinge <[email protected]> | |
Date: Tue Aug 2 18:14:28 2016 +0200 | |
[xharness] Get new mlaunch for beta 4. | |
diff --git a/tests/xharness/Harness.cs b/tests/xharness/Harness.cs | |
index b3b3fe8..1804e6c 100644 | |
--- a/tests/xharness/Harness.cs | |
+++ b/tests/xharness/Harness.cs | |
@@ -89,7 +89,8 @@ 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://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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment