diff options
author | Simon Rettberg | 2024-11-22 10:26:23 +0100 |
---|---|---|
committer | Simon Rettberg | 2024-11-22 10:26:23 +0100 |
commit | c648436ac3011dcae59f144691deb6d0842e2c39 (patch) | |
tree | 2accaae0fa6b331cb8581ec0ed1b3d7d1bbfe893 | |
parent | Bump versions (diff) | |
download | netboot-debootstrap-c648436ac3011dcae59f144691deb6d0842e2c39.tar.gz netboot-debootstrap-c648436ac3011dcae59f144691deb6d0842e2c39.tar.xz netboot-debootstrap-c648436ac3011dcae59f144691deb6d0842e2c39.zip |
fix dracut --compress call
-rwxr-xr-x | automatic-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/automatic-build b/automatic-build index 705b219..e479dce 100755 --- a/automatic-build +++ b/automatic-build @@ -441,7 +441,7 @@ fi if [ -n "$compress" ]; then echo "Using compression for initrd: $compress" - compress="--compress $compress" + compress="--compress=$compress" else echo "Will not compress initrd. Either not supported by kernel, or compression tool missing." compress="--no-compress" |