summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2024-04-29 10:42:08 +0200
committerAlyssa Ross <hi@alyssa.is>2024-04-29 10:45:54 +0200
commite8b774eeac909f1562548cb85446a4d863ab4628 (patch)
tree2e8a17f612218a1af68c38bd12456d655d392172
parentd8a92b704112d433f8ce328096efe0b6e7e8539b (diff)
downloadspectrum-e8b774eeac909f1562548cb85446a4d863ab4628.tar
spectrum-e8b774eeac909f1562548cb85446a4d863ab4628.tar.gz
spectrum-e8b774eeac909f1562548cb85446a4d863ab4628.tar.bz2
spectrum-e8b774eeac909f1562548cb85446a4d863ab4628.tar.lz
spectrum-e8b774eeac909f1562548cb85446a4d863ab4628.tar.xz
spectrum-e8b774eeac909f1562548cb85446a4d863ab4628.tar.zst
spectrum-e8b774eeac909f1562548cb85446a4d863ab4628.zip
scripts/dist-cloud-hypervisor.sh: compress with gz
Previously the tarballs were named ".xz", but actually weren't
compressed at all.  Oops!

Signed-off-by: Alyssa Ross <hi@alyssa.is>
-rwxr-xr-xscripts/dist-cloud-hypervisor.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dist-cloud-hypervisor.sh b/scripts/dist-cloud-hypervisor.sh
index 7553e62..466f653 100755
--- a/scripts/dist-cloud-hypervisor.sh
+++ b/scripts/dist-cloud-hypervisor.sh
@@ -18,4 +18,4 @@ cp -- LICENSES/Apache-2.0.txt LICENSES/LicenseRef-BSD-3-Clause-Google.txt \
 	"$dir/$name/LICENSES"
 cat pkgs/cloud-hypervisor/*.patch > "$dir/$name/cloud-hypervisor.patch"
 cat pkgs/cloud-hypervisor/vhost/*.patch > "$dir/$name/vhost.patch"
-tar -C "$dir" -cf "$name.tar.xz" -- "$name"
+tar -C "$dir" -czf "$name.tar.gz" -- "$name"