From 8a83160872dc2ddf2eec58bf9b51bcd2a124335f Mon Sep 17 00:00:00 2001 From: Greg Wilson <gvwilson@third-bit.com> Date: Sat, 15 Nov 2014 14:22:49 -0600 Subject: [PATCH] Changing sed command used to display help from Makefile. As per https://github.com/swcarpentry/workshop-template/pull/53, this PR is more selective about what it does and doesn't print. --- pages/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Makefile b/pages/Makefile index 8e50573..8939a64 100644 --- a/pages/Makefile +++ b/pages/Makefile @@ -35,7 +35,7 @@ $(DST_DIR)/%.html : $(SRC_DIR)/%.md ../_layouts/page.html ## commands : Display available commands. commands : Makefile - @sed -n 's/^## //p' $< + @sed -n 's/^##//p' $< ## update : Update the shared files from the GitHub repo holding them. # FIXME: need to create that repo. -- GitLab