better tests and cleaning

This commit is contained in:
2021-05-19 22:57:46 +03:00
committed by Motiejus Jakštys
parent 7c2609c410
commit 6ebb3fc37b
2 changed files with 3 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ clean:
.PHONY: clean-tables
clean-tables:
for t in $$(./db -c '\dt' | awk '/demo_|integ_/{print $$3}'); do \
for t in $$(./db -c '\dt' | awk '/demo|integ/{print $$3}'); do \
./db -c "drop table $$t"; \
done