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."