From cc8ecd2e13452ea644a4c777a11b9959df28083d Mon Sep 17 00:00:00 2001 From: Ajee <93165947+ajee10x@users.noreply.github.com> Date: Fri, 25 Nov 2022 10:16:17 -0500 Subject: [PATCH] Use $() notation instead of legacy backticks `` Line 45: KERNEL_BIT=`getconf LONG_BIT` Use $(...) notation instead of legacy backticks `...`. --- yabs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yabs.sh b/yabs.sh index 51c7248..dad1240 100755 --- a/yabs.sh +++ b/yabs.sh @@ -42,7 +42,7 @@ elif [[ $ARCH = *i?86* ]]; then # host is running a 32-bit kernel ARCH="x86" elif [[ $ARCH = *aarch* || $ARCH = *arm* ]]; then - KERNEL_BIT=`getconf LONG_BIT` + KERNEL_BIT=$(getconf LONG_BIT) if [[ $KERNEL_BIT = *64* ]]; then # host is running an ARM 64-bit kernel ARCH="aarch64"