Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 7446c9d

Browse files
authored
[Provisioning] Install mono for fresh machine (#13690)
1 parent 6a52953 commit 7446c9d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build/provisioning/provisioning.csx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
if (IsMac)
22
{
33
System.Net.Http.HttpClient client = new System.Net.Http.HttpClient (new System.Net.Http.HttpClientHandler { AllowAutoRedirect = true });
4-
4+
if (!Directory.Exists ("/Library/Frameworks/Mono.framework/Versions/Current/Commands/"))
5+
{
6+
Item ("Mono", "6.12.0.127")
7+
.Source (_ => "https://download.mono-project.com/archive/6.12.0/macos-10-universal/MonoFramework-MDK-6.12.0.107.macos10.xamarin.universal.pkg");
8+
}
59
ForceJavaCleanup();
610
OpenJDK ("1.8.0-40");
711

0 commit comments

Comments
 (0)