From b7487729bf79b30bed7439370a907a33a3cf0dbd Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Sat, 26 Mar 2022 05:35:44 +0100 Subject: [PATCH] $1 double quoted --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 53f06a4..4452969 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -33,7 +33,7 @@ detect_arch(){ # custom function to change bash bool 0/1 to false/true convert_bool(){ - (($1)) && echo "true" || echo "false" + (("$1")) && echo "true" || echo "false" } #=================================================