mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-26 14:18:00 +01:00
13 lines
300 B
Makefile
13 lines
300 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 \
|
|
)
|
|
|