replace manage.py with setup.py for build_ext

This commit is contained in:
Jonathan Eads 2014-06-13 08:22:27 -07:00
Родитель b3c3b4079e
Коммит d7eca2b5a3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -93,7 +93,7 @@ def deploy_admin_node(ctx):
with ctx.lcd(th_service_src):
# this is primarely for the persona ui
ctx.local("python2.6 manage.py collectstatic --noinput --settings {0}".format(th_settings))
ctx.local('python2.6 manage.py build_ext --inplace --settings {0}'.format(th_settings))
ctx.local('python2.6 setup.py build_ext --inplace --settings {0}'.format(th_settings))
def update_info(ctx):