mirror of
https://github.com/not-kennethreitz/pipenv-buildpack.git
synced 2026-06-05 06:56:16 +00:00
11 lines
153 B
Bash
11 lines
153 B
Bash
#!/usr/bin/env bash
|
|
|
|
BUILD_DIR=$1
|
|
|
|
# Exit early if app is clearly not Python.
|
|
if [ ! -f "$BUILD_DIR/Pipfile" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo "Python/Pipenv"
|