From 628252f01027b513c4de7bdaddb78662e58f85e3 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 11 Mar 2020 17:14:22 +0100 Subject: [PATCH] Update global publish --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b99aca2..d5db3e4 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,4 @@ default: publish .PHONY: publish publish: - for path in $(SITES) ; do \ - cd $$path && make publish; \ - done + for path in $(SITES) ; do echo "Building in $(basename $$path)..." && cd $$path && make publish; done