Skip to content

Commit 47cf607

Browse files
Fix Windows installation: simplify msiexec command by removing Start-Process
1 parent 34bc667 commit 47cf607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ runs:
9797
$msi = "PowerShell-$($env:REQUESTED_VERSION)-win-x64.msi"
9898
$url = "https://github.com/PowerShell/PowerShell/releases/download/v$($env:REQUESTED_VERSION)/$msi"
9999
Invoke-WebRequest -Uri $url -OutFile $msi -UseBasicParsing
100-
Start-Process msiexec.exe -ArgumentList '/i $msi REINSTALL=ALL /quiet /norestart' -Wait
100+
msiexec.exe /i $msi REINSTALL=ALL /quiet /norestart

0 commit comments

Comments
 (0)