Skip to content

Commit f8e1faa

Browse files
committed
make output message more concise
1 parent 37b8a80 commit f8e1faa

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

pkg/cmd/admin/policy/modify_roles.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -422,12 +422,11 @@ existingLoop:
422422

423423
// prints affirmative output for role modification commands
424424
func printSuccessForCommand(role string, didAdd bool, targetName string, targets []string, isNamespaced bool, out io.Writer) {
425-
preposition := "from"
426425
verb := "removed"
427-
clusterScope := " cluster "
426+
clusterScope := "cluster "
428427
allTargets := fmt.Sprintf("%q", targets)
429428
if isNamespaced {
430-
clusterScope = " "
429+
clusterScope = ""
431430
}
432431
if len(targets) > 1 {
433432
targetName = fmt.Sprintf("%ss", targetName)
@@ -436,8 +435,7 @@ func printSuccessForCommand(role string, didAdd bool, targetName string, targets
436435
}
437436
if didAdd {
438437
verb = "added"
439-
preposition = "to"
440438
}
441439

442-
fmt.Fprintf(out, "Successfully %s the %q%srole %s %s %s.\n", verb, role, clusterScope, preposition, targetName, allTargets)
440+
fmt.Fprintf(out, "%srole %q %s: %s\n", clusterScope, role, verb, allTargets)
443441
}

0 commit comments

Comments
 (0)