Fixes on deploy.sh

This commit is contained in:
Marc Aymerich 2015-05-05 20:41:05 +00:00
parent 423c6e9991
commit eebad49b59
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Command(BaseCommand):
'orchestra_beat': run('which orchestra-beat').stdout.decode('utf8'),
'venv': os.environ.get('VIRTUAL_ENV', ''),
}
content = run('crontab -l').stdout.decode('utf8')
content = run('crontab -l || true').stdout.decode('utf8')
if 'orchestra-beat' not in content:
if context['venv']:
content += "* * * * * . %(venv)s/bin/activate && %(orchestra_beat)s %(site_dir)s/manage.py; deactivate" % context