Skip to content

Commit

Permalink
google-compute-image: append .raw.tar.gz suffix
Browse files Browse the repository at this point in the history
This restores behavior of image generation before f1708a9
  • Loading branch information
Mic92 committed Apr 26, 2017
1 parent 761af14 commit 9d3c118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/virtualisation/google-compute-image.nix
Expand Up @@ -16,7 +16,7 @@ in
PATH=$PATH:${pkgs.stdenv.lib.makeBinPath [ pkgs.gnutar pkgs.gzip ]}
pushd $out
mv $diskImage disk.raw
tar -Szcf nixos-image-${config.system.nixosLabel}-${pkgs.stdenv.system}.tar.gz disk.raw
tar -Szcf nixos-image-${config.system.nixosLabel}-${pkgs.stdenv.system}.raw.tar.gz disk.raw
rm $out/disk.raw
popd
'';
Expand Down

1 comment on commit 9d3c118

@copumpkin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops, sorry!

Please sign in to comment.