Commit 32d1f285 by Nótai István

install: fix condition

parent 10382376
...@@ -15,7 +15,7 @@ pip install -r $PREFIX/requirements.txt ...@@ -15,7 +15,7 @@ pip install -r $PREFIX/requirements.txt
$PREFIX/kvm-ok > /dev/null $PREFIX/kvm-ok > /dev/null
retv=$? retv=$?
EXTRAPARAMS="" EXTRAPARAMS=""
if [ $retv == 0 ]; then if [ $retv -eq 0 ]; then
EXTRAPARAMS="--kvm-present" EXTRAPARAMS="--kvm-present"
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment