mirror of https://github.com/snachodog/mybuddy.git
9 lines
325 B
Plaintext
9 lines
325 B
Plaintext
|
#!/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 Pipfile.lock
|