mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-23 04:47:59 +01:00
14 lines
257 B
Makefile
14 lines
257 B
Makefile
SHELL=bash
|
|
|
|
BRANCH="$(git branch | grep \\\* | sed -e s/\*\ //g)"
|
|
|
|
|
|
manual-update:
|
|
git checkout master
|
|
makeinfo --html "./manuals/ponysay.texinfo"
|
|
git add "./manuals/ponysay"
|
|
git stash
|
|
git checkout $(BRANCH)
|
|
git rm "./pages/ponysay/*"
|
|
git stash pop
|
|
|