From 92bc0a474081c56d71605787d57ea2f6715a639c Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 19 Jun 2018 16:26:35 -0400 Subject: libmakepkg/util: use parameter transformation when checking variable type Now that we require bash 4.4 this is "more correct" than analyzing the output of declare -p to see if it compares favorably with -a. Signed-off-by: Eli Schwartz Signed-off-by: Allan McRae --- scripts/libmakepkg/util/util.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/libmakepkg/util/util.sh.in') diff --git a/scripts/libmakepkg/util/util.sh.in b/scripts/libmakepkg/util/util.sh.in index e1ca5cb7..0fb89186 100644 --- a/scripts/libmakepkg/util/util.sh.in +++ b/scripts/libmakepkg/util/util.sh.in @@ -42,7 +42,7 @@ is_array() { local v=$1 local ret=1 - if [[ $(declare -p "$v") == declare\ -*([[:alnum:]])a*([[:alnum:]])\ * ]]; then + if [[ ${!v@a} = *a* ]]; then ret=0 fi -- cgit v1.2.3-54-g00ecf