1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-13 04:04:35 +03:00

image-builder: Filesystems can be post-processed

This commit is contained in:
Samuel Dionne-Riel 2020-03-31 00:33:16 -04:00
parent c37da93225
commit f7506b5ec8

View File

@ -141,6 +141,10 @@ stdenvNoCC.mkDerivation (args // rec {
echo "$checkPhase"
runHook checkPhase
if [ -n "$postProcess" ]; then
echo "-> Running post-processing"
runHook postProcess
fi
'';
})