From a6e31c9975a4570008edf3e60c08866027a5d9a9 Mon Sep 17 00:00:00 2001 From: jodhus Date: Fri, 12 Jul 2024 21:19:14 -0400 Subject: [PATCH] accidentally two ]'s --- hopon/hopon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hopon/hopon b/hopon/hopon index d6290a1..56b436c 100644 --- a/hopon/hopon +++ b/hopon/hopon @@ -7,9 +7,9 @@ if [ -z "$1" ]; then fi # Check to see if a container/VM manager is installed. -if [ -x "$(command -v incus)"] ]; then +if [ -x "$(command -v incus)" ]; then vm_manager="incus" -elif [ -x "$(command -v lxc)"] ]; then +elif [ -x "$(command -v lxc)" ]; then vm_manager="lxc" else echo "No suitable container/VM manager detected."