From d454d5916a5271ec645b219fbdf6e925db187b9f Mon Sep 17 00:00:00 2001 From: Maxim Belkin Date: Fri, 6 Dec 2019 13:31:19 -0600 Subject: [PATCH] Makefile: Windows does not like single quotes --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dd47203..a4268d7 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ all : commands ## commands : show all commands. commands : - @grep -h -E '^##' ${MAKEFILES} | sed -e 's/## //g' + @grep -h -E '^##' ${MAKEFILES} | sed -e "s/## //g" ## docker-serve : use docker to build the site docker-serve : -- 2.30.2