Autogenerate Version on build (#190)

* Autogenerate Version On Build

* Fixes

* Changed Version to v0.9.0

* balls

* I hate newlines

* Don't remove .VERSION-file on `make clean`

* v0.9.0 => 1.0.0

* damn new-lines...

* Always rebuild templates/.VERSION

* Delete .VERSION

* Update Makefile
This commit is contained in:
Kim "BKC" Carlbäcker 2016-12-13 05:48:58 +01:00 committed by Lunny Xiao
parent f0a989c1d0
commit 1d1c01875d
3 changed files with 4 additions and 12 deletions

View file

@ -53,10 +53,6 @@ const (
// settings
var (
// BuildTime information should only be set by -ldflags.
BuildTime string
BuildGitHash string
// AppVer settings
AppVer string
AppName string
@ -642,11 +638,6 @@ var logLevels = map[string]string{
func newLogService() {
log.Info("%s %s", AppName, AppVer)
if len(BuildTime) > 0 {
log.Info("Build Time: %s", BuildTime)
log.Info("Build Git Hash: %s", BuildGitHash)
}
// Get and check log mode.
LogModes = strings.Split(Cfg.Section("log").Key("MODE").MustString("console"), ",")
LogConfigs = make([]string, len(LogModes))