We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1bd5aa commit fccb07fCopy full SHA for fccb07f
cmd/tailor/main.go
@@ -11,6 +11,9 @@ import (
11
"github.com/opendevstack/tailor/pkg/commands"
12
)
13
14
+// Version will be set during build time using ldflags to the current version from git tags (already prepared in the Makefile).
15
+// For example: make build VERSION=1.0.0
16
+// If the version cannot be determined (e.g. when building from source manually and no version is specified), it will default to "dev".
17
var Version = "dev"
18
19
var (
0 commit comments