From 6435c67377628ff483b861c24adac0a042f265a4 Mon Sep 17 00:00:00 2001 From: Eriq Taing Date: Mon, 23 Jun 2025 21:51:10 -0400 Subject: [PATCH] Use proper containing characters --- files/scripts/install-xpadneo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/scripts/install-xpadneo.sh b/files/scripts/install-xpadneo.sh index 0994751..a6c8930 100644 --- a/files/scripts/install-xpadneo.sh +++ b/files/scripts/install-xpadneo.sh @@ -4,11 +4,11 @@ set -oue pipefail echo "INFO: grab kernel module" -KERNEL_VER=${ls /lib/modules | head -n 1} +KERNEL_VER=$(ls /lib/modules | head -n 1) echo $KERNEL_VER echo "INFO: grab xpad modules" -MODULE_VER=${ls /usr/src | grep xpadneo | sed 's/-/\//'} +MODULE_VER=$(ls /usr/src | grep xpadneo | sed 's/-/\//') echo $MODULE_VER echo "INFO: build and install xpadneo"