Skip to content

Commit 5f40676

Browse files
committed
fix: remove ellipsis from tag-release.ps1 string literal
PowerShell parses '...' inside double-quoted strings as a splatting operator, causing a parse error when invoked via powershell.exe.
1 parent c8dabff commit 5f40676

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

assets/tag-release.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ if ($Push) {
127127
Write-Host "`n✓ All tags pushed successfully!" -ForegroundColor Green
128128
Write-Host "`nWorkflows triggered:" -ForegroundColor Cyan
129129
if (-not $CliOnly) {
130-
Write-Host " - SDK workflows (Python, .NET, Java, TypeScript, Go, Rust, etc.)" -ForegroundColor White
130+
Write-Host " - SDK workflows (Python, .NET, Java, TypeScript, Go, Rust)" -ForegroundColor White
131131
}
132132
Write-Host " - CLI release workflow (builds binaries and creates GitHub Release)" -ForegroundColor White
133133
Write-Host "`nMonitor at: https://github.com/json-structure/sdk/actions" -ForegroundColor Blue

0 commit comments

Comments
 (0)