From e77e209b8ab19986de1b2172c6d40b941a30be76 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Tue, 16 Jun 2026 20:37:51 -0400 Subject: [PATCH] =?UTF-8?q?docs(m4):=20fix=20bundle=20CLI=20example=20opti?= =?UTF-8?q?on=20names=20in=20transport=20design=20=C2=A713=20(--output/--i?= =?UTF-8?q?nput,=20not=20--out/positional)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/plans/2026-05-24-transport-design.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/plans/2026-05-24-transport-design.md b/docs/plans/2026-05-24-transport-design.md index 0473d546..085519fa 100644 --- a/docs/plans/2026-05-24-transport-design.md +++ b/docs/plans/2026-05-24-transport-design.md @@ -340,13 +340,15 @@ The `ZB.MOM.WW.ScadaBridge.Transport` library is callable from both Razor pages scadabridge bundle export \ --templates Pump,Pump.WaterPump \ --shared-scripts PumpUtils \ - --out bundle.scadabundle \ + --output bundle.scadabundle \ --passphrase mypassphrase -scadabridge bundle preview bundle.scadabundle \ +scadabridge bundle preview \ + --input bundle.scadabundle \ --passphrase mypassphrase -scadabridge bundle import bundle.scadabundle \ +scadabridge bundle import \ + --input bundle.scadabundle \ --passphrase mypassphrase \ --on-conflict overwrite|skip|rename ```