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 62fa495 commit d024fccCopy full SHA for d024fcc
crates/muvm/src/guest/bin/muvm-guest.rs
@@ -108,7 +108,8 @@ fn main() -> Result<ExitCode> {
108
for init_command in options.init_commands {
109
let code = Command::new(&init_command)
110
.current_dir(&options.cwd)
111
- .spawn()?
+ .spawn()
112
+ .with_context(|| format!("Failed to execute init command {init_command:?}"))?
113
.wait()?;
114
if !code.success() {
115
return Err(anyhow!("Executing `{}` failed", init_command.display()));
0 commit comments