From a4659d0a92cb3281cb7573f253bbbde9c673c956 Mon Sep 17 00:00:00 2001 From: claudi Date: Wed, 28 Jan 2026 14:43:19 +0100 Subject: [PATCH] fix: Fix PowerShell syntax error in upload script - Remove problematic Unicode characters (checkmark symbols) - Replace with ASCII [OK] labels - Script now parses correctly without encoding issues --- build/scripts/upload_to_packages.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/scripts/upload_to_packages.ps1 b/build/scripts/upload_to_packages.ps1 index d609fe7..9a0cbac 100644 --- a/build/scripts/upload_to_packages.ps1 +++ b/build/scripts/upload_to_packages.ps1 @@ -85,7 +85,7 @@ try { -InFile $ExePath ` -ContentType "application/octet-stream" - Write-Host "āœ“ Executable uploaded successfully" -ForegroundColor Green + Write-Host "[OK] Executable uploaded successfully" -ForegroundColor Green } catch { Write-Host "ERROR uploading executable: $_" -ForegroundColor Red @@ -103,12 +103,12 @@ try { -Body $checksum ` -ContentType "text/plain" - Write-Host "āœ“ Checksum uploaded successfully" -ForegroundColor Green + Write-Host "[OK] Checksum uploaded successfully" -ForegroundColor Green } catch { Write-Host "ERROR uploading checksum: $_" -ForegroundColor Red exit 1 } -Write-Host "`nāœ“ Upload complete!" -ForegroundColor Green +Write-Host "`n[OK] Upload complete!" -ForegroundColor Green Write-Host "View at: $ForgejoUrl/$Repo/packages" -ForegroundColor Cyan