Use proper containing characters
All checks were successful
bluebuild / Build Custom Image (recipe.yml) (pull_request) Successful in 8m39s

This commit is contained in:
2025-06-23 21:51:10 -04:00
parent 3fc537ef5e
commit 6435c67377

View File

@@ -4,11 +4,11 @@
set -oue pipefail set -oue pipefail
echo "INFO: grab kernel module" 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 $KERNEL_VER
echo "INFO: grab xpad modules" 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 $MODULE_VER
echo "INFO: build and install xpadneo" echo "INFO: build and install xpadneo"