#!/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"
