You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
643 B
23 lines
643 B
using System.Diagnostics; |
|
|
|
using Codice.Utils; |
|
|
|
namespace Unity.PlasticSCM.Editor.Tool |
|
{ |
|
internal static class LaunchInstaller |
|
{ |
|
internal static Process ForPlatform(string installerPath) |
|
{ |
|
if (PlatformIdentifier.IsMac()) |
|
{ |
|
return Process.Start( |
|
ToolConstants.Installer.INSTALLER_MACOS_OPEN, |
|
string.Format(ToolConstants.Installer.INSTALLER_MACOS_OPEN_ARGS, installerPath)); |
|
} |
|
|
|
return Process.Start( |
|
installerPath, |
|
ToolConstants.Installer.INSTALLER_WINDOWS_ARGS); |
|
} |
|
} |
|
}
|
|
|