diff options
Diffstat (limited to 'src/makefile/command_line.rs')
-rw-r--r-- | src/makefile/command_line.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/makefile/command_line.rs b/src/makefile/command_line.rs index 050488c..aaf964a 100644 --- a/src/makefile/command_line.rs +++ b/src/makefile/command_line.rs @@ -94,8 +94,7 @@ impl CommandLine { if errored { // apparently there was an error. do we care? if !ignore_error { - // TODO handle this error gracefully - panic!("error from command execution!"); + anyhow::bail!("error from command execution!"); } } |