Commit 96a0e08
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 a9bb4f9 commit 96a0e08
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
325 | 325 | | |
326 | 326 | | |
327 | 327 | | |
328 | | - | |
329 | | - | |
| 328 | + | |
| 329 | + | |
330 | 330 | | |
331 | 331 | | |
332 | 332 | | |
| |||
0 commit comments