File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ Use "{{.CommandPath}} [command] --help" for more information about a command.{{e
116
116
` , flagHelpOutput )
117
117
}
118
118
119
+ // to80CharCols takes a string s as input and returns a new string that is split
120
+ // into multiple lines with each line having a maximum of 80 characters
119
121
func to80CharCols (s string ) string {
120
122
var splitAt80 string
121
123
splitSpaces := strings .Split (s , " " )
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ func (v *VersionCmd) Init() *cobra.Command {
29
29
return & cobra.Command {
30
30
Use : "version" ,
31
31
Short : "Print the current Atlantis version" ,
32
- Run : func (cmd * cobra.Command , args []string ) {
32
+ Run : func (_ * cobra.Command , _ []string ) {
33
33
fmt .Printf ("atlantis %s\n " , v .AtlantisVersion )
34
34
},
35
35
}
You can’t perform that action at this time.
0 commit comments