Files
kennethreitz.github.com/fabfile.py
T
Kenneth Reitz 4844b3b2f8 update
2010-04-21 04:30:48 -04:00

18 lines
262 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")
def go():
""" Do it.
"""
build()
deploy()