diff --git a/cmd/foreach/foreach.go b/cmd/foreach/foreach.go index 4c9101e..a8485f2 100644 --- a/cmd/foreach/foreach.go +++ b/cmd/foreach/foreach.go @@ -49,10 +49,10 @@ func NewForeachCmd() *cobra.Command { cmd := &cobra.Command{ Use: "foreach [--repos REPOFILE] -- COMMAND [ARGUMENT...]", Short: "Run COMMAND against each working copy", - Long: "Run COMMAND against each working copy. " + - "Make sure to include a double hyphen -- with space on " + - "both sides before COMMAND, as this marks that no " + - "further options should be interpreted by turbolift.", + Long: +`Run COMMAND against each working copy. Make sure to include a +double hyphen -- with space on both sides before COMMAND, as this +marks that no further options should be interpreted by turbolift.`, RunE: runE, Args: cobra.MinimumNArgs(1), }