study/first_study/Library/PackageCache/com.unity.collab-proxy@1ec4e416a4af/Editor/Tool/LaunchInstaller.cs
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09:00

24 lines
643 B
C#

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);
}
}
}