From 35dd69b488de578bf21dd976760f4729cf9d2a30 Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Sun, 28 Jun 2020 22:54:31 +0000 Subject: [PATCH] fix(bktemplate):minor arg quotation --- unitproc/bktemplate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unitproc/bktemplate b/unitproc/bktemplate index 82caf02..67fbf17 100755 --- a/unitproc/bktemplate +++ b/unitproc/bktemplate @@ -355,7 +355,7 @@ checkapp() { #===Process Args=== for arg in "$@"; do #echo "DEBUG:processing arg:$arg" - if command -v $arg 1>/dev/null 2>&1; then # Check if arg is a valid command + if command -v "$arg" 1>/dev/null 2>&1; then # Check if arg is a valid command appRollCall[$arg]="true"; #echo "DEBUG:appRollCall[$arg]:"${appRollCall[$arg]} if ! [ "$returnState" = "false" ]; then returnState="true"; fi -- 2.30.2