From b1abaf7b56c4386f6c196d63b3b2e7ca9a6549c1 Mon Sep 17 00:00:00 2001 From: urob <978080+urob@users.noreply.github.com> Date: Fri, 16 Aug 2024 15:55:28 -0400 Subject: [PATCH] Fix build recipe for multi shield targets --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 261427f..e4b2afd 100644 --- a/Justfile +++ b/Justfile @@ -44,7 +44,7 @@ _parse_targets $expr: _build_single $board $shield *west_args: #!/usr/bin/env bash set -euo pipefail - artifact="${shield:+$shield-}${board}" + artifact="${shield:+${shield// /+}-}${board}" build_dir="{{ build / '$artifact' }}" echo "Building firmware for $artifact..."