summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2024-04-01 15:43:26 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2024-04-01 15:43:58 +0200
commit40292c51f98029b35cd26a9c7cf4302050c764da (patch)
tree4d9f0b44af67736bbaaa4422aeaf7a2d192905ea
parent61529d3eb35c738fe61b62f11443a955af597cb0 (diff)
create.sh use gunzip instead of xz
-rwxr-xr-xscripts/create.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/create.sh b/scripts/create.sh
index 3b62f04ee..cee6b5bcb 100755
--- a/scripts/create.sh
+++ b/scripts/create.sh
@@ -2,7 +2,7 @@
#-
# Copyright © 2010, 2011, 2012
# Thorsten Glaser <tg@mirbsd.org>
-# Copyright © 2010-2023
+# Copyright © 2010-2024
# Waldemar Brodkorb <wbx@openadk.org>
#
# Provided that these terms and disclaimer and all copyright notices
@@ -238,7 +238,7 @@ print -n "$ostr" | \
print Extracting installation archive...
mkdir "$T/src"
-xz -dc "$src" | (cd "$T/src"; tar -xpf -)
+gunzip -dc "$src" | (cd "$T/src"; tar -xpf -)
cd "$T/src"
rnddev=/dev/urandom
[[ -c /dev/arandom ]] && rnddev=/dev/arandom