From 0642cbde063439d6d97118058d5309e00927c076 Mon Sep 17 00:00:00 2001 From: ospab Date: Fri, 15 May 2026 00:50:22 +0300 Subject: [PATCH] Fix: Resolve PowerShell parser error in install.ps1 by wrapping interpolated arch variable in curly braces before colon delimiter. --- scripts/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index c0438a5..f120150 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -43,7 +43,7 @@ $url = "https://github.com/$repo/releases/download/$tag/$archive" $zipPath = Join-Path $env:TEMP "ostp_temp_$($PID).zip" $extractPath = Join-Path $env:TEMP "ostp_extract_$($PID)" -Write-Host "Downloading asset windows-$arch: $url ..." +Write-Host "Downloading asset windows-${arch}: $url ..." Invoke-WebRequest -Uri $url -OutFile $zipPath if (-not (Test-Path $zipPath)) {