From e05346e8c1c5a3217b23f1f720b3f927acf3d7f6 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.org>
Date: Wed, 15 Mar 2017 23:58:47 -0400
Subject: [PATCH] fixes to buildpack

---
 bin/compile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/compile b/bin/compile
index 62c0111c..ce12c55d 100755
--- a/bin/compile
+++ b/bin/compile
@@ -159,7 +159,7 @@ source $BIN_DIR/steps/python
 source $BIN_DIR/steps/setuptools
 
 # If no requirements.txt file given, assume `setup.py develop` is intended.
-if [ ! -f requirements.txt ]; then
+if [ ! -f requirements.txt ] && [! -f Pipfile ]; then
   echo "-e ." > requirements.txt
 fi
 
-- 
GitLab