mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
7 lines
233 B
Plaintext
Executable File
7 lines
233 B
Plaintext
Executable File
# Install Mercurial if it appears to be required.
|
|
if (grep -Fiq "hg+" requirements.txt) then
|
|
bpwatch start mercurial_install
|
|
/app/.heroku/python/bin/pip install mercurial | cleanup | indent
|
|
bpwatch stop mercurial_install
|
|
fi
|