Skip to content

Commit

Permalink
[deno-app-build] Do not set __noChroot if deno-cache is supplied
Browse files Browse the repository at this point in the history
  • Loading branch information
nktpro committed May 20, 2024
1 parent da69731 commit 0eac6a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/deno-app-build.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ let
inherit src;
name = "${name}-build";
nativeBuildInputs = [ deno ];
__noChroot = true;
__noChroot = deno-cache == null;
phases = [ "unpackPhase" "installPhase" ];
outputs = [ "out" "entry" ];
installPhase =
Expand Down

0 comments on commit 0eac6a3

Please sign in to comment.