Skip to content

Commit

Permalink
Merge pull request #196 from NotAShelf/master
Browse files Browse the repository at this point in the history
nix: fix incramental flags, again
  • Loading branch information
NotAShelf authored Nov 1, 2024
2 parents fab3e12 + 57d126b commit b3b4f22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nix/packages/anyrun.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ in
then pname
else null;

CARGO_BUILD_INCREMENTAL = 0;
CARGO_BUILD_INCREMENTAL = "false";
RUST_BACKTRACE = "full";

postInstall = ''
Expand Down
2 changes: 1 addition & 1 deletion nix/packages/plugin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ in
cargoBuildFlags = ["-p ${name}"];
buildAndTestSubdir = "plugins/${name}";

CARGO_BUILD_INCREMENTAL = 0;
CARGO_BUILD_INCREMENTAL = "false";
RUST_BACKTRACE = "full";

meta = {
Expand Down

0 comments on commit b3b4f22

Please sign in to comment.