From 0ef8c46d605f04744f272c7644bcc34187fde516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Sun, 28 Oct 2012 00:14:25 +0200 Subject: [PATCH] semicolons needed because of backslashes --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 96c88022..5d4afd00 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ SHELL=bash manual-update: - (branch=$$(git branch | grep \\\* | sed -e s/\*\ //g) \ - git checkout master \ - makeinfo --html "./manuals/ponysay.texinfo" \ - git add "./ponysay" \ - git stash \ - git checkout $$branch \ - git rm "./pages/ponysay/*" \ - git stash pop \ + (branch=$$(git branch | grep \\\* | sed -e s/\*\ //g) ;\ + git checkout master ;\ + makeinfo --html "./manuals/ponysay.texinfo" ;\ + git add "./ponysay" ;\ + git stash ;\ + git checkout $$branch ;\ + git rm "./pages/ponysay/*" ;\ + git stash pop ;\ )