Skip to content

Commit

Permalink
Restore command's long description
Browse files Browse the repository at this point in the history
  • Loading branch information
godrei committed Feb 28, 2022
1 parent 9b47d0f commit 67952f8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmd/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const (
// scanCmd represents the scan command.
var scanCmd = &cobra.Command{
Use: "scan",
Short: "Scan a project's code signing settings",
Long: `Scan a project's code signing settings,
Short: "Scans the project's code signing settings",
Long: `Scan the project's code signing settings,
and export the require code signing files.`,
TraverseChildren: true,
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
Expand Down
4 changes: 3 additions & 1 deletion cmd/xcode.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ import (
// xcodeCmd represents the xcode command.
var xcodeCmd = &cobra.Command{
Use: "xcode",
Short: "for Xcode Archive and IPA export actions",
Short: "Scans the project's code signing settings for Xcode Archive and IPA export actions",
Long: `Scans the project's code signing settings for Xcode Archive and IPA export actions
and export the require code signing files.`,

SilenceUsage: true,
SilenceErrors: true,
Expand Down
4 changes: 3 additions & 1 deletion cmd/xcodeUITests.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ import (

var xcodeUITestsCmd = &cobra.Command{
Use: "xcodeuitests",
Short: "for Xcode Build For Testing action",
Short: "Scans the project's code signing settings for Xcode Build For Testing action",
Long: `Scans the project's code signing settings for Xcode Build For Testing action
and export the require code signing files.`,

SilenceUsage: true,
SilenceErrors: true,
Expand Down

0 comments on commit 67952f8

Please sign in to comment.