lockbox

password manager
Log | Files | Refs | README | LICENSE

commit bbb8a29a0ba83eb436555701ca7b2e25ad45b9b1
parent ebb786f05e85c540cbcf0ed094912aefc6661d4a
Author: Sean Enck <sean@ttypty.com>
Date:   Mon, 22 Apr 2024 19:13:17 -0400

cleanup tests+internal area similarly

Diffstat:
MMakefile | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,4 +1,5 @@ BUILD := build/ +TESTDIR := internal/ tests/ TARGET := $(BUILD)lb VERSION ?= $(shell git log -n 1 --format=%h) VARS := LOCKBOX_ENV=none @@ -26,9 +27,9 @@ runs: $(TARGET) cd tests && $(VARS) ./run.sh clean: - @rm -rf $(BUILD) tests/testdata - @find internal/ -type f -wholename "*testdata*" -delete - @find internal/ -type d -empty -delete + @rm -rf $(BUILD) + @find $(TESTDIR) -type f -wholename "*testdata*" -delete + @find $(TESTDIR) -type d -empty -delete install: install -m755 $(TARGET) $(DESTDIR)/lb