Commit a243bbe
committed
fix: revert wit_deps_check to use run_shell for output redirection
Fix analysis failure in wit_deps_check rule caused by using unsupported
stdout parameter in ctx.actions.run(). The stdout parameter is not
supported in ctx.actions.run(), so revert to using ctx.actions.run_shell()
for output redirection.
This resolves build failures in:
- //test/integration:validate_consumer_deps
- //test_wit_deps/consumer:check_deps
The run_shell approach is appropriate here since it's a simple tool
invocation with output redirection, which is a legitimate shell use case.1 parent 061b791 commit a243bbe
1 file changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
0 commit comments