Fix python install utility when not using Heroku

Don't try to install `requirements.txt` which doesn't exist unless using Heroku.
This commit is contained in:
Simón Castillo 2016-04-29 22:00:05 -04:30
parent b6bf40e973
commit 4b13d6f9a6

View File

@ -45,6 +45,8 @@ else
pip install -r requirements/local.txt
pip install -r requirements/test.txt
{% if cookiecutter.use_heroku == "y" -%}
pip install -r requirements.txt
{%- endif %}
fi