mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
500daaf6fc
* initial stab at pipenv --dev support * test installation output * locale fix * refactor * fix typo * fix typo * ellipsis * polish
13 lines
311 B
Bash
Executable File
13 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Syntax sugar.
|
|
BIN_DIR=$(cd "$(dirname "$0")" || return; pwd) # absolute path
|
|
|
|
# shellcheck source=bin/utils
|
|
source "$BIN_DIR/utils"
|
|
|
|
# Locale support for Pipenv.
|
|
export LC_ALL=C.UTF-8
|
|
export LANG=C.UTF-8
|
|
|
|
DISABLE_COLLECTSTATIC=1 INSTALL_TEST=1 "$(dirname "${0:-}")/compile" "$1" "$2" "$3" |