images: remove original files when using zstd for compression

This commit is contained in:
Pavol Rusnak 2020-06-14 00:19:11 +02:00
parent 2cb97c36ae
commit 490fc040be
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D
2 changed files with 2 additions and 2 deletions

View file

@ -129,7 +129,7 @@ fi
if test -n "$compressImage"; then
echo "Compressing image..."
zstd -T$NIX_BUILD_CORES $out/iso/$isoName
zstd -T$NIX_BUILD_CORES --rm $out/iso/$isoName
fi
mkdir -p $out/nix-support

View file

@ -190,7 +190,7 @@ in
fsck.vfat -vn firmware_part.img
dd conv=notrunc if=firmware_part.img of=$img seek=$START count=$SECTORS
if test -n "$compressImage"; then
zstd -T$NIX_BUILD_CORES $img
zstd -T$NIX_BUILD_CORES --rm $img
fi
'';
}) {};