From e6a6ad68b1b62f9d6e14c0f08d6358ab970c8be8 Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Tue, 28 Dec 2021 18:54:51 -0800 Subject: [PATCH] Change default buildPhase to run `cargo build` --- lib/buildWithCargo.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/buildWithCargo.nix b/lib/buildWithCargo.nix index 3d05416..de36e6a 100644 --- a/lib/buildWithCargo.nix +++ b/lib/buildWithCargo.nix @@ -60,7 +60,7 @@ let buildPhase = '' runHook preBuild - cargo check --release + cargo build --release runHook postBuild ''; };