Fix evaluation

(cherry picked from commit 9d6de4c312)
This commit is contained in:
Luis Guzmán 2020-06-30 20:54:37 -05:00
parent 8518515b9d
commit 60b05e307e
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ else
echo "Memory: OK ($((mem_available/1024)) MiB)"
MEM_MIN="Y"
fi
if [ $CPU_MIN="Y" ] && [ $MEM_MIN="Y" ];then
if [ "$CPU_MIN" = "Y" ] && [ "$MEM_MIN" = "Y" ];then
echo "All requirements seems meet!"
echo "We hope you have a nice recording/streaming session"
else