From 2ec550f7467443814fcd61f9fa3000f63f06ada3 Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Thu, 4 Aug 2016 18:09:56 +0800 Subject: [PATCH] FIX: Make sure we're checking against a string. --- launcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher b/launcher index 50268d7..be0b0f4 100755 --- a/launcher +++ b/launcher @@ -250,7 +250,7 @@ find_templates() { local arrTemplates=${templates// / } - if [ ! -z $templates ]; then + if [ ! -z "$templates" ]; then for template in "${arrTemplates[@]}" do local nested_templates=$(find_templates $template) -- 2.25.1