accidentally two ]'s
This commit is contained in:
parent
8d76c9b4b1
commit
a6e31c9975
1 changed files with 2 additions and 2 deletions
|
@ -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."
|
||||
|
|
Loading…
Reference in a new issue