From 60b05e307e2bfe13250c08ee9af7756d6ff63de3 Mon Sep 17 00:00:00 2001 From: Luis Guzman Date: Tue, 30 Jun 2020 20:54:37 -0500 Subject: [PATCH] Fix evaluation (cherry picked from commit 9d6de4c312eae7f368e614c6baf92be38da5e3fc) --- quick_jibri_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index d507cb0..97d9cf7 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -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