Fix non-functioning code
This commit is contained in:
parent
c93558d56d
commit
3b918ca0a1
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ $null = powershell -c Get-PackageProvider -ListAvailable NuGet;
|
||||||
|
|
||||||
if (-not $?) {
|
if (-not $?) {
|
||||||
Write-Host "Installing NuGet PackageProvider";
|
Write-Host "Installing NuGet PackageProvider";
|
||||||
powershell -c $null = Install-PackageProvider -Name NuGet -Force;
|
powershell -c '$null = Install-PackageProvider -Name NuGet -Force';
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($module in @("PSWindowsUpdate", "KnownFolders"))
|
foreach ($module in @("PSWindowsUpdate", "KnownFolders"))
|
||||||
|
|
Loading…
Reference in a new issue