We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcd7d8c commit 504062bCopy full SHA for 504062b
1 file changed
cmd/cain.go
@@ -157,7 +157,12 @@ func NewSchemaCmd(out io.Writer) *cobra.Command {
157
return cmd
158
}
159
160
-var GitTag, GitCommit string
+var (
161
+ // GitTag stands for a git tag
162
+ GitTag string
163
+ // GitCommit stands for a git commit hash
164
+ GitCommit string
165
+)
166
167
// NewVersionCmd prints version information
168
func NewVersionCmd(out io.Writer) *cobra.Command {
0 commit comments