From edb2d8e229ea5c5d516c39bc11d81cd42697d4d1 Mon Sep 17 00:00:00 2001 From: ospab Date: Thu, 9 Jul 2026 02:45:00 +0300 Subject: [PATCH] ci: fix powershell encoding error --- scripts/gha.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gha.ps1 b/scripts/gha.ps1 index 3fea776..c11e277 100644 --- a/scripts/gha.ps1 +++ b/scripts/gha.ps1 @@ -119,7 +119,7 @@ if ($ResolvedBranch -ne "nightly") { if ($LASTEXITCODE -ne 0) { $msg = "'$ResolvedBranch' has diverged from nightly and can't fast-forward. " + "Per CONTRIBUTING.md, nothing should ever be committed directly to " + - "$ResolvedBranch - check what's there before forcing anything." + "$ResolvedBranch — check what's there before forcing anything." Fail $msg } }