ignore unused on windows (#10009)

This commit is contained in:
Jack Amadeo
2026-06-25 09:59:14 -07:00
committed by GitHub
parent 8ab0320a7b
commit 9c96bd7ebc
@@ -320,6 +320,8 @@ pub struct ShellTool {
impl ShellTool {
pub fn new(use_login_shell_path: bool) -> std::io::Result<Self> {
#[cfg(windows)]
let _unused = use_login_shell_path;
Ok(Self {
output_dir: tempfile::tempdir()?,
call_index: AtomicUsize::new(0),