From 12bc65ee76c9b9a3e4f4eb84c8919dbcd297f807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Sat, 17 Apr 2021 17:09:40 +0300 Subject: [PATCH] drop table --- IV/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IV/Makefile b/IV/Makefile index 4e39f93..29cc4d9 100644 --- a/IV/Makefile +++ b/IV/Makefile @@ -169,7 +169,7 @@ clean: ## Clean the current working directory .PHONY: clean-tables clean-tables: ## Remove tables created during unit or integration tests - ./db -c '\dt' | awk '/\ywm_\w+\y/{print "drop table "$$3";"}' | ./db -f - + ./db -c '\dt wm_*' | awk '/_/{print "drop table "$$3";"}' | ./db -f - -rm .faux_db .PHONY: help