From b27825139e77cd8c527ada7c712f186c94444c04 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 25 Apr 2024 02:09:40 +0200 Subject: brand exe with both long and short commit hashes --- cmd/server/main.go | 5 +++++ cmd/server/server.go | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'cmd') diff --git a/cmd/server/main.go b/cmd/server/main.go index 9fb9f14..b6817d8 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -11,6 +11,11 @@ import ( "github.com/pkg/errors" ) +var ( + CommitSHA string + ShortSHA string +) + type Config struct { Production bool `conf:"default:false"` ListenAddress string `conf:"default:localhost"` diff --git a/cmd/server/server.go b/cmd/server/server.go index 10144bb..9a1e48a 100644 --- a/cmd/server/server.go +++ b/cmd/server/server.go @@ -19,8 +19,6 @@ import ( "github.com/shengyanli1982/law" ) -var Commit string - var config *cfg.Config type HTTPError struct { @@ -71,7 +69,7 @@ func (fn webHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { slog.Error("runtime panic!", "error", fail) } }() - w.Header().Set("Server", fmt.Sprintf("website (%s)", Commit)) + w.Header().Set("Server", fmt.Sprintf("website (%s)", ShortSHA)) if err := fn(w, r); err != nil { if strings.Contains(r.Header.Get("Accept"), "text/html") { w.WriteHeader(err.Code) @@ -119,7 +117,7 @@ func startServer(runtimeConfig *Config) { EnableTracing: true, TracesSampleRate: 1.0, Dsn: os.Getenv("SENTRY_DSN"), - Release: Commit, + Release: CommitSHA, Environment: env, }) if err != nil { -- cgit 1.4.1