lockbox

password manager
Log | Files | Refs | README | LICENSE

commit e5f566f2db5589da1d18d29a331f006e9ed8e031
parent b084b01084e4beea62f6646855f19e9b9a7b1d84
Author: Sean Enck <sean@ttypty.com>
Date:   Sat, 16 Jul 2022 10:52:26 -0400

renaming

Diffstat:
MMakefile | 4++--
Rinternal/dump/dump.go -> internal/dump/export.go | 0
Rinternal/encrypt/encrypt.go -> internal/encrypt/core.go | 0
Rinternal/encrypt/encrypt_test.go -> internal/encrypt/core_test.go | 0
4 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -14,10 +14,10 @@ all: $(TARGETS) $(TARGETS): $(SOURCE) go.* go build -ldflags '-X main.version=$(VERSION) -X main.libExec=$(LIBEXEC) -X main.mainExe=$(MAIN)' -trimpath -buildmode=pie -mod=readonly -modcacherw -o $@ cmd/$(shell basename $@)/main.go -$(TESTDIR): $(TARGETS) +$(TESTDIR): cd $@ && go test -check: $(TESTDIR) +check: $(TARGETS) $(TESTDIR) cd tests && make BUILD=../$(BUILD) clean: diff --git a/internal/dump/dump.go b/internal/dump/export.go diff --git a/internal/encrypt/encrypt.go b/internal/encrypt/core.go diff --git a/internal/encrypt/encrypt_test.go b/internal/encrypt/core_test.go