From 7aa98134aee2f6240b7755178b54030d0f9fff1b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 3 Jul 2026 19:35:10 +0000 Subject: [PATCH 1/2] Initial plan From 3b3cbdba40b3bba24f625b7b325db21caec05fe8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 3 Jul 2026 19:36:25 +0000 Subject: [PATCH 2/2] Fix PowerShell $ escaping and indentation in GenBuildInfo.ps1 --- CultureList/PowerShell/GenBuildInfo.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CultureList/PowerShell/GenBuildInfo.ps1 b/CultureList/PowerShell/GenBuildInfo.ps1 index f2d0425..d0acf67 100644 --- a/CultureList/PowerShell/GenBuildInfo.ps1 +++ b/CultureList/PowerShell/GenBuildInfo.ps1 @@ -28,11 +28,11 @@ internal static class BuildInfo DateTime.ParseExact(BuildDateString, `"yyyy/MM/dd HH:mm:ss`", CultureInfo.InvariantCulture), DateTimeKind.Utc); - public static readonly string BuildDateStringUtc = $`"{BuildDateUtc:f} (UTC)`"; + public static readonly string BuildDateStringUtc = `$`"{BuildDateUtc:f} (UTC)`"; - public static readonly string VersionString = string.IsNullOrWhiteSpace(Prerelease) + public static readonly string VersionString = string.IsNullOrWhiteSpace(Prerelease) ? VersionInfo.Version - : $`"{VersionInfo.Version}-{Prerelease}`"; + : `$`"{VersionInfo.Version}-{Prerelease}`"; }" $outputPath = Join-Path -Path $(Get-Location).Path -ChildPath $outputFile