Fix version string for local dev

This commit is contained in:
Gabe Kangas 2021-03-15 16:58:26 -07:00
parent 3fb80554ef
commit e366989a7d

View File

@ -51,8 +51,9 @@ func main() {
} else { } else {
config.GitCommit = time.Now().Format("20060102") config.GitCommit = time.Now().Format("20060102")
} }
config.BuildPlatform = BuildPlatform if BuildPlatform != "" {
config.BuildPlatform = BuildPlatform
}
log.Infoln(config.GetReleaseString()) log.Infoln(config.GetReleaseString())
// Allows a user to restore a specific database backup // Allows a user to restore a specific database backup