Skip to content

Commit

Permalink
fixes default nix builder (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinerg authored Jan 12, 2024
1 parent 67370cd commit ff0e45a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/nix/nix.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func defaultNixBuilder(ctx context.Context, outLink, nixStorePath string) error
} else {
args = append(args, "--out-link", outLink)
}
args = append(args, "nixStorePath")
args = append(args, nixStorePath)

_, err := exec.Command("nix", args...).Output()
var exitErr *exec.ExitError
Expand Down

0 comments on commit ff0e45a

Please sign in to comment.