Commit 609d8248f68782175ba622f5a301691be4fef072
1 parent
5dcd8f29
Exists in
master
and in
39 other branches
Fixing rm to remove tgz file after install
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
fabfile.py
... | ... | @@ -275,7 +275,7 @@ def install_solr(): |
275 | 275 | run('cp -rf /tmp/solr-4.6.1 ~/solr-4.6.1') |
276 | 276 | run('mv ~/solr-4.6.1/example ~/solr-4.6.1/colab') |
277 | 277 | run('chmod +x ~/solr-4.6.1/colab/start.jar') |
278 | - run('rm /tmp/solr-4.6.1') | |
278 | + run('rm /tmp/solr-4.6.1.tgz') | |
279 | 279 | |
280 | 280 | with cd('~/solr-4.6.1/colab/solr/collection1/conf/'): |
281 | 281 | if not exists('stopwords_en.txt'): | ... | ... |