From 90dfeaf61c32b2ef526dad8a1d29d6bedb34da9b Mon Sep 17 00:00:00 2001 From: David Leach Date: Mon, 6 Jan 2025 12:54:33 -0600 Subject: [PATCH] scripts: west_commands: runners: Fix broken jlink runner The cleanup pass (336c7da) to address long lines accidentally removed a needed comma in the jlink runner. Fixes #83605 Signed-off-by: David Leach --- scripts/west_commands/runners/jlink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/west_commands/runners/jlink.py b/scripts/west_commands/runners/jlink.py index cd2ea3e8d67..87355b90e09 100644 --- a/scripts/west_commands/runners/jlink.py +++ b/scripts/west_commands/runners/jlink.py @@ -269,7 +269,7 @@ class JLinkBinaryRunner(ZephyrBinaryRunner): + ['-speed', self.speed] + ['-device', self.device] + ['-silent'] - + ['-endian' 'big' if big_endian else 'little'] + + ['-endian', 'big' if big_endian else 'little'] + ['-singlerun'] + (['-nogui'] if self.supports_nogui else []) + (['-rtos', plugin_dir] if rtos else [])