From d609a3e8832cedbae4e3159cb366f9a62aef48b5 Mon Sep 17 00:00:00 2001 From: ospab Date: Thu, 9 Jul 2026 02:44:11 +0300 Subject: [PATCH] ci: fix powershell parse error caused by utf-8 em-dash --- scripts/gha.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gha.ps1 b/scripts/gha.ps1 index c11e277..3fea776 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 } }