diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-05 16:54:32 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-05 16:54:32 +0200 |
commit | c38841af935795cab25f0f95667fc655a73e3977 (patch) | |
tree | de2f0b0e1df26c6bc2ecf0b5aa176062cdcfdc5d /scripts | |
parent | 183c6abb9564d61e42b25022d7d41ac3761f4e7b (diff) |
fix install.sh use gzip
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index 867a4154f..e3494d5d6 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -589,7 +589,7 @@ case $target { (( quiet )) || print Extracting installation archive... mount_fs "$rootpart" "$R" ext4 -xz -dc "$src" | (cd "$R"; tar -xpf -) +gzip -dc "$src" | (cd "$R"; tar -xpf -) if (( datafssz )); then mkdir -m0755 "$R"/data |