make-disk-image: fix eval

This commit is contained in:
Orivej Desh 2017-11-13 14:56:30 +00:00
parent 443b592935
commit 470a7752d8

View File

@ -41,7 +41,7 @@ with lib;
let format' = format; in let
format = if (format' == "qcow2-compressed") then "qcow2" else format;
format = if (format' == "qcow2-compressed") then "qcow2" else format';
compress = optionalString (format' == "qcow2-compressed") "-c";