We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43d020f commit f5ded9bCopy full SHA for f5ded9b
crates/muvm/src/guest/bin/muvm-guest.rs
@@ -109,7 +109,8 @@ fn main() -> Result<ExitCode> {
109
for init_command in options.init_commands {
110
let code = Command::new(&init_command)
111
.current_dir(&options.cwd)
112
- .spawn()?
+ .spawn()
113
+ .with_context(|| format!("Failed to execute init command {init_command:?}"))?
114
.wait()?;
115
if !code.success() {
116
return Err(anyhow!("Executing `{}` failed", init_command.display()));
0 commit comments