lockbox

password manager
Log | Files | Refs | README | LICENSE

commit b92232a765a617e6949e819a448943a8376fd7c8
parent 9f645a7849d192aa905410d1b5bf625b363ee677
Author: Sean Enck <sean@ttypty.com>
Date:   Wed,  8 Mar 2023 18:41:07 -0500

do not echo the git command for tags

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -7,7 +7,7 @@ all: $(TARGET) build: $(TARGET) $(TARGET): cmd/main.go internal/**/*.go go.* internal/cli/completions* - ! test -d .git || make .version | grep 'version:' | cut -d ':' -f 2 | tr '\n' '_' | sed 's/_//g' > cmd/vers.txt + @! test -d .git || make .version | grep 'version:' | cut -d ':' -f 2 | tr '\n' '_' | sed 's/_//g' > cmd/vers.txt go build $(GOFLAGS) -o $@ cmd/main.go .version: