makefile in blobject-0.3.7 vs makefile in blobject-0.4.0
- old
+ new
@@ -1,4 +1,18 @@
test:
./spec/exec
-.PHONY: test
+gh-pages:
+ set -o errexit
+
+ git checkout gh-pages # fail&bail if there are uncommitted changes
+ rm -rf *
+ git clone git://github.com/sjltaylor/blobject.git
+ mv blobject/doc/* ./
+ rm -rf blobject
+ git add -A .
+ git commit -m 'updated docs with "make docs"'
+ git push origin gh-pages:gh-pages
+ git checkout master
+
+
+.PHONY: test gh-pages
\ No newline at end of file