Commit 7f2181c3680b750d755c3817267ebfdf15e5c5e2
1 parent
6609b110
Exists in
master
and in
39 other branches
Minor fix on load_badges fab
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
fabfile.py
... | ... | @@ -90,9 +90,8 @@ def deploy(update=False): |
90 | 90 | |
91 | 91 | |
92 | 92 | def load_badges(): |
93 | - put('~/colab/badges', '~/colab/www/static/media/badges') | |
94 | - | |
95 | 93 | with cd('~/colab/src/'), prefix(WORKON_COLAB): |
94 | + run('cp ~/colab/badges ~/colab/www/static/media/badges') | |
96 | 95 | run('python manage.py loaddata badger/fixtures/badges.py') |
97 | 96 | |
98 | 97 | ... | ... |