From db298dabb7d3755bc772dba50eaa0939a2e254a7 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 2 Jul 2024 12:06:36 +0200 Subject: [PATCH] fix ending too soon --- windows/installers/runner.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/installers/runner.ps1 b/windows/installers/runner.ps1 index d63b64b..4711c84 100644 --- a/windows/installers/runner.ps1 +++ b/windows/installers/runner.ps1 @@ -8,7 +8,7 @@ $filePath = Join-Path -Path $env:TEMP -ChildPath $fileName Write-Host "Downloading $fileName..." Invoke-WebRequest -Uri $url -OutFile $filePath -& $filePath +Start-Process $filePath -NoNewWindow -Wait; Remove-Item -Path $filePath