Skip to content
Snippets Groups Projects
Commit a1cac685 authored by Cam Saul's avatar Cam Saul
Browse files

Makefile for making dox

parent b1bf3e1d
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
.PHONY: dox
# Generate marginalia dox and push them to GitHub pages for this repo
# You should do this from an up-to-date `master` branch without untracked local changes
dox:
git checkout master
git pull
lein marg
cp ./docs/uberdoc.html ./uberdoc.html
git checkout gh-pages
git pull
rm index.html
mv uberdoc.html index.html
git add index.html
git commit -m "Updated dox."
git push --set-upstream origin gh-pages
git checkout master
rm uberdoc.html
......@@ -184,7 +184,7 @@
;; ## NEW PERMISSIONS CHECKING MACROS
;; Since checking `@can_read` `@can_write` is such a common pattern, these
;; Since checking `@can_read`/`@can_write` is such a common pattern, these
;; macros eliminate a bit of the redundancy around doing so.
;; They support two forms:
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment