Skip to content

Commit 8ea8f8c

Browse files
committed
fix: compile private hook config on Windows
Signed-off-by: Will Killian <wkillian@nvidia.com>
1 parent fcd7ee5 commit 8ea8f8c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

crates/cli/src/hooks/config.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33

44
//! Private, installer-owned configuration for generated coding-agent hooks.
55
6-
use std::io::Read;
76
use std::path::{Path, PathBuf};
87

8+
#[cfg(unix)]
9+
use std::io::Read;
10+
911
use serde::{Deserialize, Serialize};
1012

1113
use crate::agents::CodingAgent;

0 commit comments

Comments
 (0)