You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an unexpected error caused by processx::run() that fails even when the error_on_status = FALSE if the command argument doesn't exist on the path.
The error comes from the internal C commands called by processx.
On condathis, we need to rework the rethrow error to capture this case and not throw error when error = "continue" on run_bin().
The error class contains: "c_error" and 'rlib_error_3_0" already captured by `rethrown_error_*().
Steps to reproduce
Ensure you have {condathis} version v0.1.0 installed.
Error in `condathis::run_bin()`:
✖ System command FakeBInFIle failed
! Status code: 127
FakeBInFIle: command not found
Run `rlang::last_trace()` to see where the error occurred.
Expected behavior
The error is captured, and the process continues gracefully without stopping execution.
The text was updated successfully, but these errors were encountered:
Overview
This is an unexpected error caused by
processx::run()
that fails even when theerror_on_status = FALSE
if thecommand
argument doesn't exist on the path.The error comes from the internal C commands called by
processx
.On
condathis
, we need to rework the rethrow error to capture this case and not throw error whenerror = "continue"
onrun_bin()
.The error class contains: "c_error" and 'rlib_error_3_0" already captured by `rethrown_error_*().
Steps to reproduce
Ensure you have {condathis} version v0.1.0 installed.
Output
Expected behavior
The error is captured, and the process continues gracefully without stopping execution.
The text was updated successfully, but these errors were encountered: