master
Nick Sergeant 2012-04-07 19:17:27 -04:00
parent 3be9208b6e
commit 5e62c4060b
1 changed files with 4 additions and 1 deletions

5
fabfile.py vendored
View File

@ -15,7 +15,10 @@ def deploy(m):
local("hg commit -m '{}'".format(m))
except:
pass
local('hg push')
try:
local('hg push')
except:
pass
with cd(env.site_path):
run('hg pull -u')