commit dba60e2e65d10eb4135d671b4c0e4c376d43afba
parent c68281b3532e00c1f3be38c550affc64fd4386a9
Author: Joel Challis <git@zvecr.com>
Date: Sun, 21 Dec 2025 04:07:40 +0000
Re-fix building of XAP keymaps on master/develop (#25892)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/ci_build_major_branch_keymap.yml b/.github/workflows/ci_build_major_branch_keymap.yml
@@ -106,7 +106,7 @@ jobs:
run: |
export NCPUS=$(( $(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || getconf _NPROCESSORS_ONLN 2>/dev/null) -1 ))
targets=$(jq -r '.["${{ matrix.target }}"].targets' targets.json | tr ' ' '\n' | sort)
- if [[ -z ${targets} ]]; then
+ if [ -z "${targets}" ]; then
echo "Zero build targets detected"
exit 0
fi