diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2019-06-03 20:36:45 -0400 |
|---|---|---|
| committer | Dave Henderson <dhenderson@gmail.com> | 2019-06-03 20:40:44 -0400 |
| commit | cf879d705bd47097809ed1a7771cfd030cacf260 (patch) | |
| tree | def528ff739e74bfee2e407b1501395f57d83a81 /cmd | |
| parent | fd00d0ff8e1812a5637c33bd3e2745796228755a (diff) | |
Removing BuildDate to make build more reproducible
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/gomplate/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/gomplate/main.go b/cmd/gomplate/main.go index aa6692a3..017b9d89 100644 --- a/cmd/gomplate/main.go +++ b/cmd/gomplate/main.go @@ -110,8 +110,8 @@ func newGomplateCmd() *cobra.Command { } if verbose { // nolint: errcheck - fmt.Fprintf(os.Stderr, "%s version %s, build %s (%v)\nconfig is:\n%s\n\n", - cmd.Name(), version.Version, version.GitCommit, version.BuildDate, + fmt.Fprintf(os.Stderr, "%s version %s, build %s\nconfig is:\n%s\n\n", + cmd.Name(), version.Version, version.GitCommit, &opts) } |
