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
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 ;\
)