docs(m4): fix bundle CLI example option names in transport design §13 (--output/--input, not --out/positional)

This commit is contained in:
Joseph Doherty
2026-06-16 20:37:51 -04:00
parent dd545281e6
commit e77e209b8a
+5 -3
View File
@@ -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
```