Files
pipenv-buildpack/bin/detect
T
2019-02-13 07:02:07 -05:00

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"