mirror of
https://github.com/erkin/ponysay.git
synced 2025-01-31 10:26:43 +01:00
14 lines
367 B
Makefile
14 lines
367 B
Makefile
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 ;\
|
|
git mv "./ponysay" "./pages" ;\
|
|
)
|
|
|