diff --git a/typhon/src/nix.rs b/typhon/src/nix.rs index 3fd37b15..dc5fa0d9 100644 --- a/typhon/src/nix.rs +++ b/typhon/src/nix.rs @@ -67,7 +67,7 @@ impl CommandExtTrait for Command { pub async fn build(path: &DrvPath) -> Result { let build_logs = BUILD_LOGS.get().unwrap(); let mut child = Command::nix(["build", "--log-format", "internal-json", "--json"]) - .arg(&path) + .arg(format!("{}^*", path)) .stdin(Stdio::inherit()) .stdout(Stdio::piped()) .stderr(Stdio::piped())