semicolons needed because of backslashes

This commit is contained in:
Mattias Andrée 2012-10-28 00:14:25 +02:00
parent 386eb22257
commit 0ef8c46d60

View file

@ -1,13 +1,13 @@
SHELL=bash SHELL=bash
manual-update: manual-update:
(branch=$$(git branch | grep \\\* | sed -e s/\*\ //g) \ (branch=$$(git branch | grep \\\* | sed -e s/\*\ //g) ;\
git checkout master \ git checkout master ;\
makeinfo --html "./manuals/ponysay.texinfo" \ makeinfo --html "./manuals/ponysay.texinfo" ;\
git add "./ponysay" \ git add "./ponysay" ;\
git stash \ git stash ;\
git checkout $$branch \ git checkout $$branch ;\
git rm "./pages/ponysay/*" \ git rm "./pages/ponysay/*" ;\
git stash pop \ git stash pop ;\
) )