From 6aecf59536e00168f68114054bce09647a5d64e3 Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Thu, 25 Sep 2025 17:42:11 -0700 Subject: [PATCH] add ssh hostname comma- prefix for convenience (#36199) --- tools/scripts/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/ssh.py b/tools/scripts/ssh.py index 0429799a2e..e454afb691 100755 --- a/tools/scripts/ssh.py +++ b/tools/scripts/ssh.py @@ -50,7 +50,7 @@ if __name__ == "__main__": if args.debug: command += ["-v"] command += [ - f"comma@{dongle_id}", + f"comma@comma-{dongle_id}", ] if args.debug: print(" ".join([f"'{c}'" if " " in c else c for c in command]))