Skip to content

Commit

Permalink
Temporary stopped SVN download on macOS through MSDKI (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
rat-moonshine committed Jul 15, 2021
1 parent 7a90646 commit 6bd0354
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions InstallerSharedCore/src/actionScripts/utils/Parser.as
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 6bd0354

Please sign in to comment.