You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throw [NotImplementedException]'Automatic installation of Pwsh is not yet supported.'
56
+
throw [NotImplementedException]'Pwsh not found but automatic installation is not yet supported.'
57
57
}
58
58
Write-Error"PowerShell (pwsh) not found on your system. Please install PowerShell $RequiredPowerShellVersion or higher and ensure it is available in your `$env:PATH environment variable"
59
59
return
60
60
}
61
61
if ($pwshVersion-lt$RequiredPowerShellVersion) {
62
62
if ($InstallPrerequisites) {
63
-
throw [NotImplementedException]'Automatic installation of Pwsh is not yet supported.'
63
+
throw [NotImplementedException]"Pwsh $pwshVersion less than $requiredPowershell Version but Automatic installation of Pwsh is not yet supported."
64
64
}
65
65
Write-Error"PowerShell version $pwshVersion is not or no longer supported. Please install PowerShell $RequiredPowerShellVersion or higher"
0 commit comments