Skip to content

Commit b5e513c

Browse files
fix otaToolsQuick again
My bad, I misunderstood how that was supposed to work.
1 parent 3471c93 commit b5e513c

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

modules/base.nix

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -607,14 +607,13 @@ in
607607
# is just for debugging. We save significant time for a full build by
608608
# normally building target-files-package and otatools-package
609609
# simultaneously
610-
otaToolsQuick = fixOtaTools (mkAndroid {
610+
otaToolsQuick = fixOtaTools mkAndroid {
611611
name = "otatools.zip";
612612
makeTargets = [ "otatools-package" ];
613613
installPhase = ''
614-
mkdir -p $out
615-
cp --reflink=auto ${config.otatoolsOutPath} $out/otatools.zip
614+
cp --reflink=auto ${config.otatoolsOutPath} $out
616615
'';
617-
});
616+
};
618617

619618
fixOtaTools =
620619
src:

0 commit comments

Comments
 (0)