Disable jekyll processing on github pages
Signed-off-by: martin f. krafft <madduck@madduck.net>
diff --git a/Makefile b/Makefile
index 1b01e24..85ea630 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,8 @@
git checkout $(BRANCH)
git rm -rf . || :
echo '/doc/build/html/.buildinfo' > .gitignore
- git add $(HTMLDIR) .gitignore
+ touch .nojekyll
+ git add $(HTMLDIR) .gitignore .nojekyll
git mv $(HTMLDIR)/* .
if git commit -m'Webpage update' -s; then \
git push $(shell git config --get branch.$(BRANCH).remote) $(BRANCH); \