Commit 7b40d728 by Reto Gantenbein

Fix version comparison

parent df3e3fa1
...@@ -540,7 +540,7 @@ download_fedora() ...@@ -540,7 +540,7 @@ download_fedora()
CHROOT_CMD= CHROOT_CMD=
INSTALL_ROOT=${setup_rootfs} INSTALL_ROOT=${setup_rootfs}
if [ ! "${is_fedora}" ] || [ "${fedora_host_ver}" <= "${FEDORA_VERSION_MINIMAL}" ] if [ ! "${is_fedora}" ] || [ "${fedora_host_ver}" -lt "${FEDORA_VERSION_MINIMAL}" ]
then then
# if this is not a supported Fedora host, use minimal bootstrap chroot # if this is not a supported Fedora host, use minimal bootstrap chroot
echo "Non-Fedora host detected. Checking for bootstrap environment ... " echo "Non-Fedora host detected. Checking for bootstrap environment ... "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment