Fix fabfile

master
Nick Sergeant 2012-04-29 11:05:07 -04:00
parent e885e99821
commit f1d7f04b1a
1 changed files with 2 additions and 2 deletions

4
fabfile.py vendored
View File

@ -14,12 +14,12 @@ def dep():
local('python manage.py collectstatic --ignore grappelli --ignore admin --noinput')
try:
local('hg push')
local('git pull && ./get-last-commit-url.py')
except:
pass
with cd(env.site_path):
run('hg pull -u')
run('git pull')
run(_python('manage.py collectstatic --ignore grappelli --ignore admin --noinput'))
def re():