mirror of https://github.com/snachodog/mybuddy.git
9 lines
312 B
Bash
9 lines
312 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Make non-zero exit codes & other errors fatal:
|
|
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
set -euo pipefail
|
|
|
|
# Prevent heroku-buildpack-python from using pipenv instead of pip and requirements.txt.
|
|
# https://github.com/heroku/heroku-buildpack-python/issues/704
|
|
rm Pipfile |