chore: move gh-pages output directory under build/ and update .gitignore

The gh-pages directory is now created inside build/ instead of at the project root.
The .gitignore entry for the old gh-pages location is removed, and the Makefile
cp target is updated from gh-pages to build/gh-pages.
This commit is contained in:
Bob Nystrom
2015-03-14 19:19:03 +00:00
parent 3f3955b1c3
commit af58528e88
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -51,6 +51,6 @@ watchdocs:
# Build the docs and copy them to a local "gh-pages" directory.
gh-pages: docs
@ cp -r build/docs/. gh-pages
@ cp -r build/docs/. build/gh-pages
.PHONY: debug release all clean test builtin docs watchdocs gh-pages