Skip to content

Commit 8619a6e

Browse files
avrabeclaude
andcommitted
fix: correct concatenate_files operation config in rust_wasm_component_bindgen
The concatenate_files operation config was using 'input_files' and 'output_file' but the file_ops implementation expects 'src_paths' and 'dest_path'. This was causing the "concatenate_files operation missing src_paths" error in CI. Fixed field names to match the file_ops schema: - input_files → src_paths (list of source file paths) - output_file → dest_path (destination file path) This fixes the Rust component wrapper generation in guest mode. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 5b02de0 commit 8619a6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/rust_wasm_component_bindgen.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ with open(sys.argv[3], 'w') as f:
325325
"workspace_dir": ".",
326326
"operations": [{
327327
"type": "concatenate_files",
328-
"input_files": [temp_wrapper.path, ctx.file.bindgen.path],
329-
"output_file": out_file.path,
328+
"src_paths": [temp_wrapper.path, ctx.file.bindgen.path],
329+
"dest_path": out_file.path,
330330
}],
331331
}),
332332
)

0 commit comments

Comments
 (0)