Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
olegklimov committed Jan 12, 2025
1 parent 44e454a commit d7bf9ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/integrations/integr_shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ pub async fn execute_shell_command(
cmd.stderr(Stdio::piped());

let t0 = tokio::time::Instant::now();
tracing::info!("SHELL: running command directory {}\n{:?}", workdir, command);
tracing::info!("SHELL: running command directory {:?}\n{:?}", workdir_maybe, command);
let output = tokio::time::timeout(tokio::time::Duration::from_secs(timeout), cmd.output())
.await
.map_err(|_| format!("Command timed out after {} seconds", timeout))?
Expand Down

0 comments on commit d7bf9ef

Please sign in to comment.