summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfebootstrap-supermin-helper.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/febootstrap-supermin-helper.sh b/febootstrap-supermin-helper.sh
index 0849b1f..f6a54e6 100755
--- a/febootstrap-supermin-helper.sh
+++ b/febootstrap-supermin-helper.sh
@@ -81,7 +81,10 @@ rm -f "$kernel" "$initrd"
# without arch second.
arch=$(echo "@host_cpu@" | sed 's/^i.86$/i?86/')
-kernels=$(ls -1dvr /boot/vmlinuz-*.$arch* 2>/dev/null | grep -v xen; ls -1dvr /boot/vmlinuz-* 2>/dev/null | grep -v xen)
+kernels=$(
+ ls -1dvr /boot/vmlinuz-*.$arch* 2>/dev/null | grep -v xen ||: ;
+ ls -1dvr /boot/vmlinuz-* 2>/dev/null | grep -v xen
+)
if [ -z "$kernels" ]; then
echo "$0: failed to find a suitable kernel in /boot directory" >&2