This commit is contained in:
Jake Friedman 2021-04-19 16:27:20 -07:00 коммит произвёл GitHub
Родитель 08499bcfa4
Коммит 984456836b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -8,7 +8,7 @@ Param
)
$ErrorActionPreference = "stop"
if ((-not $PSEdition -eq "Desktop") -and (-not $IsWindows))
if (($PSEdition -ne "Desktop") -and (-not $IsWindows))
{
$command = $PSCommandPath.Replace(".ps1", ".sh")
if ($AutoStart)
@ -71,4 +71,4 @@ else
{
Write-Host "The FactoryOrchestrator service is not set to `"Auto`" start. It will only start manually. Change it to `"Auto`" start on boot at any time with: Set-Service -Name `"Microsoft.FactoryOrchestrator`" -StartupType Automatic"
}
}
}