Files
kennethreitz.github.com/fabfile.py
T
Kenneth Reitz 7a3493ece6 update
2010-04-21 04:21:13 -04:00

12 lines
223 B
Python

from fabric.api import *
def build():
""" Do it.
"""
local("ronn -5 man/kennethreitz.1.ron > index.html")
def deploy():
""" Activate local virtualenv
"""
local("git commit -am 'update'")
local("git push")