We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ed775 commit babfffbCopy full SHA for babfffb
Tools/Initialize-DevEnvironment.ps1
@@ -10,7 +10,7 @@ foreach ($Key in $CIPPSettings.PSObject.Properties.Name) {
10
}
11
12
$PowerShellWorkerRoot = Join-Path $env:ProgramFiles 'Microsoft\Azure Functions Core Tools\workers\powershell\7.4\Microsoft.Azure.Functions.PowerShellWorker.dll'
13
-if (Test-Path $PowerShellWorkerRoot -and !('Microsoft.Azure.Functions.PowerShellWorker' -as [type])) {
+if ((Test-Path $PowerShellWorkerRoot) -and !('Microsoft.Azure.Functions.PowerShellWorker' -as [type])) {
14
Write-Information "Loading PowerShell Worker from $PowerShellWorkerRoot"
15
Add-Type -Path $PowerShellWorkerRoot
16
0 commit comments