Skip to content

Commit ad17d77

Browse files
committed
build(macos): remove unused import of tracing::warn
Signed-off-by: Calum Murray <cmurray@redhat.com>
1 parent 6c7950d commit ad17d77

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

crates/openshell-sandbox/src/process.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ use std::os::unix::io::RawFd;
2020
use std::path::PathBuf;
2121
use std::process::Stdio;
2222
use tokio::process::{Child, Command};
23-
use tracing::{debug, warn};
23+
use tracing::debug;
24+
#[cfg(target_os = "linux")]
25+
use tracing::warn;
2426

2527
fn inject_provider_env(cmd: &mut Command, provider_env: &HashMap<String, String>) {
2628
for (key, value) in provider_env {

0 commit comments

Comments
 (0)