diff --git a/README.md b/README.md index 8497ae9..edcfc03 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ # Secrets Management Tool (SMT) -Build Date: {BUILDTIME} -Build Hash: {SHA1VER} +Build Date: `{BUILDTIME}` + +Build Hash: `{SHA1VER}` ## Overview diff --git a/index.htm b/index.htm index 59cbc2e..c308f55 100644 --- a/index.htm +++ b/index.htm @@ -1,7 +1,8 @@

Secrets Management Tool (SMT)

-

Build Date: {BUILDTIME} -Build Hash: {SHA1VER}

+

Build Date: {BUILDTIME}

+ +

Build Hash: {SHA1VER}

Overview

diff --git a/main.go b/main.go index a82673a..975dd6f 100644 --- a/main.go +++ b/main.go @@ -65,7 +65,7 @@ func staticFileServer(content embed.FS) gin.HandlerFunc { // parse the file and perform text replacements as necessary for key, element := range replacements { - log.Printf("Searching for '%s' to replace\n", key) + //log.Printf("Searching for '%s' to replace\n", key) data = bytes.Replace(data, []byte(key), []byte(element), -1) }