Skip to content

Commit 11af129

Browse files
committed
Makefile for frontpage updated
1 parent f6d7fb1 commit 11af129

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

frontpage/Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
CWD := $(shell pwd)
22

33
all:
4-
echo ${CWD}; \
5-
cd ..; \
6-
git checkout gh-pages; \
7-
git checkout master -- README.rst; \
8-
rst2html.py --stylesheet=stylesheets/styles.css,stylesheets/pygment_trac.css,stylesheets/normalize.css,stylesheets/ie.css --link-stylesheet README.rst index.html; \
9-
rm README.rst; \
10-
git reset; \
11-
git add index.html; \
12-
git commit -m "Index.html generated."; \
13-
git checkout master
4+
echo ${CWD} && \
5+
cd .. && \
6+
git checkout gh-pages && \
7+
git checkout master -- README.rst && \
8+
rst2html.py --stylesheet=stylesheets/styles.css,stylesheets/pygment_trac.css,stylesheets/normalize.css,stylesheets/ie.css --link-stylesheet README.rst index.html && \
9+
rm README.rst && \
10+
git reset && \
11+
git add index.html && \
12+
git commit -m "Index.html generated." && \
13+
git checkout master && \
1414
cd ${CWD}

0 commit comments

Comments
 (0)