Mercurial > public > sg101
comparison fabfile.py @ 592:76ec83b73e18
For Django 1.4 directory changes, fix path in fabfile.py.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 12 May 2012 15:01:02 -0500 |
parents | 0d007c8c4851 |
children | 35f0904d4bd5 |
comparison
equal
deleted
inserted
replaced
591:1982996ce365 | 592:76ec83b73e18 |
---|---|
1 from fabric.api import cd, run | 1 from fabric.api import cd, run |
2 | 2 |
3 PYTHON = '/home/var/django-sites/virtualenvs/sg101/bin/python' | 3 PYTHON = '/home/var/django-sites/virtualenvs/sg101/bin/python' |
4 WC_DIR = '/home/var/django-sites/virtualenvs/sg101/sg101' | 4 WC_DIR = '/home/var/django-sites/virtualenvs/sg101/sg101' |
5 PROJ_DIR = WC_DIR + '/gpp' | 5 PROJ_DIR = WC_DIR + '/sg101' |
6 | 6 |
7 def update(): | 7 def update(): |
8 """ | 8 """ |
9 Runs hg pull --update to pull changes and update to them. | 9 Runs hg pull --update to pull changes and update to them. |
10 | 10 |