Rename proboctl CLI binary to prb

Shorter CLI name for faster typing. Renames the binary, build targets,
goreleaser config, command examples, and documentation.

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-03-16 15:10:01 +01:00
parent 1f1df63676
commit 7e86d2c89f
30 changed files with 82 additions and 82 deletions

View File

@@ -73,10 +73,10 @@ func NewCmdAdd(f *cmdutil.Factory) *cobra.Command {
Use: "add",
Short: "Add an applicability statement to a SoA",
Example: ` # Add a control as applicable
proboctl soa statement add --soa SOA_ID --control CTRL_ID --applicable
prb soa statement add --soa SOA_ID --control CTRL_ID --applicable
# Add a control as not applicable with justification
proboctl soa statement add --soa SOA_ID --control CTRL_ID --not-applicable --justification "Not in scope"`,
prb soa statement add --soa SOA_ID --control CTRL_ID --not-applicable --justification "Not in scope"`,
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
if flagApplicable && flagNotApplicable {