diff --git a/InstallerSharedCore/src/actionScripts/utils/Parser.as b/InstallerSharedCore/src/actionScripts/utils/Parser.as index 2f1c21a..81c0e07 100644 --- a/InstallerSharedCore/src/actionScripts/utils/Parser.as +++ b/InstallerSharedCore/src/actionScripts/utils/Parser.as @@ -234,6 +234,15 @@ package actionScripts.utils tmpComponent.licenseTitle = String(comp.license.title); setDescriptionBy(comp.license.description, tmpComponent); } + + // temporary Fix for Subversion + // https://github.com/Moonshine-IDE/Moonshine-SDK-Installer/issues/31#issuecomment-880061856 + // Not to include Subversion download on macOS + if ((tmpComponent.type == ComponentTypes.TYPE_SVN) && HelperConstants.IS_MACOS) + { + tmpComponent.isDownloadable = false; + tmpComponent.hasWarning = "SVN installation is not currently available. You can install it through Homebrew with \"brew install svn\""; + } model.components.add(tmpComponent); }