Skip to content

Commit

Permalink
server: fix nix build invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
pnmadelaine committed Jul 9, 2023
1 parent 69ac6e5 commit 929d09a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typhon/src/nix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl CommandExtTrait for Command {
pub async fn build(path: &DrvPath) -> Result<DrvOutputs, Error> {
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())
Expand Down

0 comments on commit 929d09a

Please sign in to comment.