diff --git a/bin/compile b/bin/compile index cc41dd1..a3d4d01 100755 --- a/bin/compile +++ b/bin/compile @@ -157,7 +157,7 @@ if [ ! "$SKIP_INSTALL" ]; then python setup.py install &> /dev/null cd $WORKING_DIR - puts-step "Installing pip (1.2.1)" + puts-step "Installing Pip (1.2.1)" cd $ROOT_DIR/vendor/pip-1.2.1/ python setup.py install &> /dev/null cd $WORKING_DIR @@ -179,7 +179,7 @@ if (in-req "hg+" requirements.txt) then fi # Install dependencies with Pip. -puts-step "Installing dependencies using pip (1.2.1)" +puts-step "Installing dependencies using Pip (1.2.1)" pip install --use-mirrors -r requirements.txt --exists-action=w --src=./.heroku/src | cleanup | indent # Django collectstatic support. diff --git a/bin/release b/bin/release index 035029c..b2b3a68 100755 --- a/bin/release +++ b/bin/release @@ -11,18 +11,13 @@ config_vars: EOF +MANAGE_FILE=$(cd $BUILD_DIR && find . -maxdepth 3 -type f -name 'manage.py' | head -1) +MANAGE_FILE=${MANAGE_FILE:2} -# [ "$NAME" = "Python/Django" ] || exit 0 +if [[ $MANAGE_FILE ]]; then +cat <