accidentally two ]'s

This commit is contained in:
Josh W 2024-07-12 21:19:14 -04:00
parent 8d76c9b4b1
commit a6e31c9975

View file

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