# HG changeset patch # User Brian Neal # Date 1320610752 21600 # Node ID 1eb4b4072888d92958438d6b37bbba2aa6fd6e42 # Parent 5992b6b1bcd29b3d12ad3406cf3f4fc3d551de69 More useful to do a pull -u than an update in the fabric file. diff -r 5992b6b1bcd2 -r 1eb4b4072888 fabfile.py --- a/fabfile.py Sun Nov 06 13:55:16 2011 -0600 +++ b/fabfile.py Sun Nov 06 14:19:12 2011 -0600 @@ -1,13 +1,13 @@ from fabric.api import cd, env, local, put, run -def up(): +def update(): """ - Runs hg up. + Runs hg pull -u. """ with cd('/home/var/django-sites/bns/bns/'): - run('hg up') + run('hg pull -u') def collectstatic():