Skip to content

Commit 5e162dd

Browse files
rootCopilot
andcommitted
fix: correct Generate-Commands parameter names for trae in PowerShell release script
Fix incorrect parameter names in the trae case of Build-Variant: - -Format -> -Extension - -ArgsToken -> -ArgFormat - -OutDir -> -OutputDir These now match the Generate-Commands function signature and all other agent entries in the script. Co-authored-by: Copilot <copilot@github.com>
1 parent 46b7fea commit 5e162dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/scripts/create-release-packages.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ function Build-Variant {
457457
'trae' {
458458
$rulesDir = Join-Path $baseDir ".trae/rules"
459459
New-Item -ItemType Directory -Force -Path $rulesDir | Out-Null
460-
Generate-Commands -Agent 'trae' -Format 'md' -ArgsToken '$ARGUMENTS' -OutDir $rulesDir -ScriptVariant $script
460+
Generate-Commands -Agent 'trae' -Extension 'md' -ArgFormat '$ARGUMENTS' -OutputDir $rulesDir -ScriptVariant $script
461461
}
462462
'generic' {
463463
$cmdDir = Join-Path $baseDir ".speckit/commands"

0 commit comments

Comments
 (0)