From 0dd5c21e2756798cb3c3333b7f6a8775b498d3b4 Mon Sep 17 00:00:00 2001 From: Alex Jordan Date: Sun, 30 Apr 2017 19:24:27 -0400 Subject: [PATCH] Use slightly more standard Unix in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 746b528..67a514d 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,9 @@ start: prepublish http-server index.html: Readme.md head.html foot.html package.json Makefile - cat head.html > build.html + cp head.html build.html ## Change to This - sed 's/<project name>/This/g' Readme.md >> build.md + sed 's/<project name>/This/g' Readme.md > build.md marked -i build.md >> build.html rm build.md cat foot.html >> build.html