We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d5ea79 commit 3cdc499Copy full SHA for 3cdc499
client/cmd/trdl/command/template.go
@@ -14,7 +14,6 @@ const (
14
`{{$optionsCmdFor := optionsCmdFor .}}` +
15
`{{$usageLine := usageLine .}}` +
16
`{{$versionLine := versionLine .}}`
17
-
18
19
// SectionAliases is the help template section that displays command aliases.
20
SectionAliases = `{{if gt .Aliases 0}}Aliases:
client/cmd/trdl/main.go
@@ -11,8 +11,10 @@ import (
11
"github.com/werf/trdl/client/internal/logger"
12
)
13
-var homeDir string
-var debug bool
+var (
+ homeDir string
+ debug bool
+)
func main() {
if err := rootCmd().Execute(); err != nil {
0 commit comments