Skip to content

Commit e2356f2

Browse files
mikolalysenkoclaude
andcommitted
ci(vex): pass file path positionally to vexctl merge
`vexctl merge` accepts file paths positionally, not via `--files`. Verified locally with vexctl v0.3.0: $ vexctl merge ./out.vex.json { ... merged document ... } Exit 0 with our generated doc confirms parse + schema validation against the OpenVEX 0.2.0 spec. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 6a22f2e commit e2356f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/socket-patch-cli/tests/e2e_vex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ fn maybe_validate_with_vexctl(vex_text: &str) {
579579
std::fs::write(tmp.path(), vex_text).unwrap();
580580

581581
let out = Command::new(&vexctl)
582-
.args(["merge", "--files", tmp.path().to_str().unwrap()])
582+
.args(["merge", tmp.path().to_str().unwrap()])
583583
.output()
584584
.expect("spawn vexctl");
585585
assert!(

0 commit comments

Comments
 (0)