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
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2021-03-15 15:10:25 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2021-03-15 15:10:25 +0300
commit83cbc378af35346ae538d787d46dac209e8fd6da (patch)
treebce885c5107d28a17cdb045a51944ad6355bc327 /packaging
parent79b6e3f256a59ede74596ce82547f320bf1e9a99 (diff)
Rename master branch to main
Diffstat (limited to 'packaging')
-rw-r--r--packaging/MacSDK/mono.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/MacSDK/mono.py b/packaging/MacSDK/mono.py
index 829e9a43739..b0eaf1183f1 100644
--- a/packaging/MacSDK/mono.py
+++ b/packaging/MacSDK/mono.py
@@ -5,7 +5,7 @@ from bockbuild.package import Package
from bockbuild.util.util import *
-class MonoMasterPackage(Package):
+class MonoMainPackage(Package):
def __init__(self):
Package.__init__(self, 'mono', None,
@@ -96,4 +96,4 @@ class MonoMasterPackage(Package):
os.symlink('mono-sgen64', '%s/bin/mono64' % self.staged_profile)
os.symlink('mono-sgen32', '%s/bin/mono32' % self.staged_profile)
-MonoMasterPackage()
+MonoMainPackage()