Merge pull request #136 from StephenHodgson/dev-hub-default-install-path

updated default installation path to be the hub path
This commit is contained in:
Robert Onulak 2019-01-16 13:33:43 -08:00 коммит произвёл GitHub
Родитель e8f5a0fddd 0842ca88d4
Коммит 46027e37b5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 12 добавлений и 2 удалений

Просмотреть файл

@ -475,7 +475,17 @@ function Install-UnitySetupInstance {
$localDestinations += , $Destination
}
else {
$localDestinations += , "C:\Program Files\Unity-$($i.Version)"
switch (Get-OperatingSystem) {
([OperatingSystem]::Windows) {
$localDestinations += , "C:\Program Files\Unity\Hub\Editor\$($i.Version)"
}
([OperatingSystem]::Linux) {
throw "Install-UnitySetupInstance has not been implemented on the Linux platform. Contributions welcomed!";
}
([OperatingSystem]::Mac) {
$localDestinations += , "/Applications/Unity/Hub/Editor/$($i.Version)"
}
}
}
if ( Test-Path $destPath ) {
@ -617,7 +627,7 @@ function Get-UnitySetupInstance {
}
([OperatingSystem]::Mac) {
if (-not $BasePath) {
$BasePath = @('/Applications/Unity*')
$BasePath = @('/Applications/Unity*', '/Applications/Unity/Hub/Editor/*')
}
$ivyPath = 'Unity.app/Contents/UnityExtensions/Unity/Networking/ivy.xml'
}