fix(new-device): emit --install-type system, not removed --system flag #83
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/VAPP-71-install-type-flag"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The "+ New Device" install snippets passed --system to
vervain-agent install, but VA-84 removed that boolean flag in favour of --install-type <system|user>. clap rejects the unknown argument, so every copy-pasted one-liner or scp snippet failed at the first step withunexpected argument '--system'. Both call sites in new_device.rs now emit the explicit--install-type system(system is still the default, so intent is unchanged) matching the CLI's own documented example. Added a test module asserting both snippets use --install-type system and contain no --system, so the stale flag cannot reappear.#VAPP-71