Skip to content

Commit

Permalink
Update src/cli/cmd/mod.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Cole Helbling <[email protected]>
  • Loading branch information
grahamc and cole-h authored Jul 30, 2024
1 parent 3361f2e commit c0060a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cmd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ async fn nix_command(args: &[&str], sudo_if_necessary: bool) -> Result<(), FhErr
cmd.args(args);
cmd.stdout(Stdio::inherit());
cmd.stderr(Stdio::inherit());
let cmd_str = format!("{:?}", cmd);
let cmd_str = format!("{:?}", cmd.as_std());
tracing::debug!("Running: {:?}", cmd_str);

let output = cmd
Expand Down

0 comments on commit c0060a4

Please sign in to comment.