lockbox

password manager
Log | Files | Refs | README | LICENSE

commit 3444cba24890566c1890cc67cff42895131b2e08
parent ced4e86de18cb2d6b3ae053d79c65a52d2170b1d
Author: Sean Enck <sean@ttypty.com>
Date:   Sat, 15 Oct 2022 11:20:07 -0400

moving things a bit around

Diffstat:
MMakefile | 4++--
Rcontrib/completions.bash -> internal/cli/completions.bash | 0
Rcontrib/doc.sections -> scripts/doc.sections | 0
Rcontrib/version -> scripts/version | 0
4 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -4,7 +4,7 @@ TARGET := $(BUILD)lb TESTDIR := $(sort $(dir $(wildcard internal/**/*_test.go))) DOC := $(BUILD)doc.text MAN := $(BUILD)lb.man -DOCTEXT := contrib/doc.sections +DOCTEXT := scripts/doc.sections .PHONY: $(TESTDIR) @@ -13,7 +13,7 @@ all: $(TARGET) build: $(TARGET) $(MAN) $(TARGET): cmd/main.go internal/**/*.go go.* - ./contrib/version + ./scripts/version go build -trimpath -buildmode=pie -mod=readonly -modcacherw -o $@ cmd/main.go $(TESTDIR): diff --git a/contrib/completions.bash b/internal/cli/completions.bash diff --git a/contrib/doc.sections b/scripts/doc.sections diff --git a/contrib/version b/scripts/version