Removing the "update-site" script, since we're going to be hosting our

docs at Read The Docs.
This commit is contained in:
Jonathan LaCour
2011-03-13 11:49:17 -04:00
parent 810c31ee67
commit c0282603bc
2 changed files with 4 additions and 7 deletions

View File

@@ -1,6 +0,0 @@
make html
rm -rf ../../pecan.github.com/docs
cp -r build/html ../../pecan.github.com/docs
cd ../../pecan.github.com
git commit -a -m "Updating documentation."
git push

View File

@@ -37,6 +37,9 @@ requirements = [
try: try:
import json import json
except: except:
try:
import simplejson
except:
requirements.append("simplejson >= 2.1.1") requirements.append("simplejson >= 2.1.1")