mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-22 12:27:59 +01:00
semicolons needed because of backslashes
This commit is contained in:
parent
386eb22257
commit
0ef8c46d60
1 changed files with 8 additions and 8 deletions
16
Makefile
16
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 ;\
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue