From 6baa0fe10386aa54c2c11332a2004da33d821024 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Thu, 28 Dec 2023 15:39:40 +1100 Subject: [PATCH] tweak readme --- README.md | 5 +++-- index.htm | 5 +++-- main.go | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) 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) }