better tests and cleaning

This commit is contained in:
Motiejus Jakštys
2021-03-24 17:13:48 +02:00
parent 757a42231d
commit 5788eaf7c1
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