mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-10 21:18:36 +00:00
Fix misused anyhow! macro
Was msising a return, which bail! includes
This commit is contained in:
parent
30f8f04dcf
commit
2b9b938327
@ -1,5 +1,5 @@
|
||||
use crate::flags::Bindgen;
|
||||
use anyhow::{anyhow, Context, Result};
|
||||
use anyhow::{anyhow, Context, Result, bail};
|
||||
use std::path::{Path, PathBuf};
|
||||
|
||||
impl Bindgen {
|
||||
@ -140,7 +140,7 @@ fn generate_binding_file(
|
||||
eprintln!("Executing bindgen [output = {}]", output.display());
|
||||
let status = cmd.status().context("Failed to execute bindgen")?;
|
||||
if !status.success() {
|
||||
anyhow!(
|
||||
bail!(
|
||||
"Failed to execute bindgen: {}, see output for details",
|
||||
status
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user