cleaner clean-tables

This commit is contained in:
Motiejus Jakštys 2021-04-17 17:05:47 +03:00
parent dd9658249f
commit e41e1dfed7

View File

@ -169,10 +169,8 @@ clean: ## Clean the current working directory
.PHONY: clean-tables .PHONY: clean-tables
clean-tables: ## Remove tables created during unit or integration tests clean-tables: ## Remove tables created during unit or integration tests
for t in $$(./db -c '\dt' | awk '/\ywm_\w+\y/{print $$3}'); do \ ./db -c '\dt' | awk '/\ywm_\w+\y/{print "drop table "$$3";"}' | ./db -f -
./db -c "drop table $$t"; \ -rm .faux_db
done
-rm .faux_test
.PHONY: help .PHONY: help
help: ## Print this help message help: ## Print this help message