Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

Commit

Permalink
fix: assume that git tag contains a v prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
rollulus committed Feb 12, 2018
1 parent 044e9d7 commit 1d5efbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var addCmd = &cobra.Command{
env.ChartLoader = landscaper.NewLocalCharts(env.HelmHome)

v := landscaper.GetVersion()
logrus.WithFields(logrus.Fields{"tag": v.GitTag, "commit": v.GitCommit}).Infof("This is Landscaper v%s", v.SemVer)
logrus.WithFields(logrus.Fields{"tag": v.GitTag, "commit": v.GitCommit}).Infof("This is Landscaper %s", v.SemVer)
logrus.WithFields(logrus.Fields{"namespace": env.Namespace, "releasePrefix": env.ReleaseNamePrefix, "dir": env.LandscapeDir, "dryRun": env.DryRun, "wait": env.Wait, "waitTimeout": env.WaitTimeout, "helmHome": env.HelmHome, "verbose": env.Verbose, "environment": env.Environment}).Info("Apply landscape desired state")

// deprecated: populate ComponentFiles by getting *.yaml from LandscapeDir
Expand Down

0 comments on commit 1d5efbb

Please sign in to comment.