Skip to content

Commit c82978b

Browse files
authored
Remove dup shorthand flag (#109)
1 parent 818a107 commit c82978b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func init() {
3333
listCmd.PersistentFlags().BoolVarP(&extendedInfo, "extended-info", "e", false, "include additional information about roles such as associated apps")
3434
listCmd.PersistentFlags().BoolVarP(&shortInfo, "short-info", "s", false, "only display the role ARNs")
3535
listCmd.PersistentFlags().StringVarP(&accountFilter, "account", "a", "", "filter by aws account number or account name")
36-
listCmd.PersistentFlags().BoolVarP(&showAll, "all", "A", true, "show all available roles (default option)")
36+
listCmd.PersistentFlags().BoolVar(&showAll, "all", true, "show all available roles (default option)")
3737
listCmd.PersistentFlags().BoolVarP(&showInstanceProfilesOnly, "instance", "i", false, "show only instance roles")
3838
listCmd.PersistentFlags().BoolVarP(&showConfiguredProfilesOnly, "profiles", "p", false, "show only configured roles")
3939
rootCmd.AddCommand(listCmd)

0 commit comments

Comments
 (0)