From 5fb15d5c31a93d6c2dcaa80075a809e569df49ca Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Wed, 13 Oct 2021 15:54:19 -0400 Subject: [PATCH] Re-create cache dir after destroying (#1263) Cache dir should always exist, so after deleting it, it must be recreated. This is done in `make init-dirs`, but if gets destroyed here, it won't auto-recreate. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b112c465..e6272228 100644 --- a/Makefile +++ b/Makefile @@ -287,6 +287,7 @@ destroy-db: $(DOCKER_COMPOSE) rm -fv docker volume ls -q -f "name=^$(DC_PROJECT)_" | $(XARGS) docker volume rm rm -rf cache + mkdir cache .PHONY: start-db-nowait start-db-nowait: init-dirs