From f5ca696f8b004a80b5cf48c7499f69bd47bf63a1 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Thu, 10 Nov 2011 11:01:32 -0800 Subject: [PATCH] python2.7 --- bin/detect | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/detect b/bin/detect index 26873845..8cf2b467 100755 --- a/bin/detect +++ b/bin/detect @@ -5,6 +5,4 @@ BUILD_DIR=$1 [ -f $BUILD_DIR/requirements.txt ] || exit 1 # fail fast if no requirements.txt # 'Python/Django' if there is a [mysite]/settings.py file present; otherwise 'Python' -ls $BUILD_DIR/**/settings.py &> /dev/null && echo Python/Django || echo Python - -echo kennethreitz \ No newline at end of file +ls $BUILD_DIR/**/settings.py &> /dev/null && echo Python/Django || echo 'Python2.7' \ No newline at end of file -- GitLab