Install PowerShell modules after removing old copy

This commit is contained in:
Manuel Thalmann 2024-08-06 18:19:33 +02:00
parent 87036479fa
commit 51558e02c9

View file

@ -54,16 +54,16 @@ $null = New-Module {
return;
}
Invoke-Hook "Install-PSModules" -Fallback {
Install-Module -AcceptLicense -Force PSWindowsUpdate;
};
if (Test-Path $env:PWSH_PATH) {
attrib "-R" "$env:PWSH_PATH\*" /S /D;
Remove-Item -Recurse -Force $env:PWSH_PATH;
continue;
}
Invoke-Hook "Install-PSModules" -Fallback {
Install-Module -AcceptLicense -Force PSWindowsUpdate;
};
if (-not (Test-Command winget)) {
. "$PSScriptRoot/../Software/winget/Manage.ps1";
continue;