mirror of
https://github.com/kennethreitz-archive/kennethreitz.github.com.git
synced 2026-06-05 15:30:17 +00:00
18 lines
269 B
Python
18 lines
269 B
Python
from fabric.api import *
|
|
|
|
def build():
|
|
""" Do it.
|
|
"""
|
|
local("ronn -5 man/kennethreitz.1.ron --pipe > index.html")
|
|
|
|
def deploy():
|
|
""" Activate local virtualenv
|
|
"""
|
|
local("git commit -am 'update'")
|
|
local("git push")
|
|
|
|
def go():
|
|
""" Do it.
|
|
"""
|
|
build()
|
|
deploy() |