summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-01-09 18:18:38 +0100
committerTodd Gamblin <tgamblin@llnl.gov>2014-01-09 18:18:38 +0100
commit72e54caf06a3b3be0ecd0b166fb83aace7baaaa4 (patch)
treee146e9b28732f62b6c7191415236abbdb55b85a4 /lib
parent912a87c868dd6f67569cfaba9ce0d9d762278d29 (diff)
downloadspack-72e54caf06a3b3be0ecd0b166fb83aace7baaaa4.tar.gz
spack-72e54caf06a3b3be0ecd0b166fb83aace7baaaa4.tar.bz2
spack-72e54caf06a3b3be0ecd0b166fb83aace7baaaa4.tar.xz
spack-72e54caf06a3b3be0ecd0b166fb83aace7baaaa4.zip
Add line to disable jekyll on github.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/docs/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/spack/docs/Makefile b/lib/spack/docs/Makefile
index 8762fa06b0..4baba720ef 100644
--- a/lib/spack/docs/Makefile
+++ b/lib/spack/docs/Makefile
@@ -25,10 +25,15 @@ all: html
# This creates a git repository and commits generated html docs.
# It them pushes the new branch into THIS repository as gh-pages.
#
+# github for some reason runs jekyll automatically on gh-pages
+# files, but we don't want that. 'touch .nojekyll' takes care
+# of it.
+#
gh-pages: _build/html
root="$$(git rev-parse --show-toplevel)" && \
cd _build/html && \
rm -rf .git && \
+ touch .nojekyll && \
git init && \
git add . && \
git commit -m "Initial commit" && \