mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
05e3d8ccce
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
10 lines
228 B
Bash
Executable File
10 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install Mercurial if it appears to be required.
|
|
if [[ -f "requirements.txt" ]]; then
|
|
if (grep -Fiq "hg+" requirements.txt) then
|
|
/app/.heroku/python/bin/pip install mercurial | cleanup | indent
|
|
fi
|
|
fi
|
|
|