Skip to content
Snippets Groups Projects
Commit f9b74e8b authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

use latest, to debug


Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>
parent a1e31696
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash #!/usr/bin/env bash
export CLINT_FORCE_COLOR=1 export CLINT_FORCE_COLOR=1
export PIPENV_FORCE_COLOR=1
# Pipenv support (Generate requriements.txt with pipenv). # Pipenv support (Generate requriements.txt with pipenv).
if [[ -f Pipfile ]]; then if [[ -f Pipfile ]]; then
...@@ -8,7 +10,7 @@ if [[ -f Pipfile ]]; then ...@@ -8,7 +10,7 @@ if [[ -f Pipfile ]]; then
puts-step "Installing requirements with latest Pipenv..." puts-step "Installing requirements with latest Pipenv..."
# Install pipenv. # Install pipenv.
/app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null /app/.heroku/python/bin/pip install git+https://github.com/kennethreitz/pipenv.git#egg=pipenv --upgrade &> /dev/null
if [[ ! -f Pipfile.lock ]]; then if [[ ! -f Pipfile.lock ]]; then
bash -c "/app/.heroku/python/bin/pipenv install --system --skip-lock" 2>&1 | indent bash -c "/app/.heroku/python/bin/pipenv install --system --skip-lock" 2>&1 | indent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment