diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-31 13:43:46 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-31 13:43:46 -0600 |
commit | e1128fe55d91ca60086de45c911b4568d2eec9ee (patch) | |
tree | 14a31a8423ea848715de3ca672702104a5bc483a /src/makefile/command_line.rs | |
parent | 43d2639526aa0534ef7a051cce39043095aebbab (diff) | |
download | makers-e1128fe55d91ca60086de45c911b4568d2eec9ee.tar.gz makers-e1128fe55d91ca60086de45c911b4568d2eec9ee.zip |
awolnation voice BAIL
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!"); } } |