Commit 8f5385f9 authored by Kenneth Reitz's avatar Kenneth Reitz

cleanup

parent 0b46e1d8
...@@ -87,21 +87,11 @@ if (grep -Fiq "hg+" requirements.txt) then ...@@ -87,21 +87,11 @@ if (grep -Fiq "hg+" requirements.txt) then
fi fi
# Install dependencies. # Install dependencies.
set +e
echo "-----> Installing dependencies using pip version $(pip --version | awk '{print $2}')" echo "-----> Installing dependencies using pip version $(pip --version | awk '{print $2}')"
export GIT_TRACE=1 export GIT_TRACE=1
pip install --use-mirrors -r requirements.txt -v | indent pip install --use-mirrors -r requirements.txt -v | indent
# If there's an error, purge and recreate.
[ $? -ne 0 ] && {
ls -a $BUILD_DIR/src/requests/
exit 1
}
set -e
# Django support. # Django support.
if [ "$NAME" = "Python/Django" ]; then if [ "$NAME" = "Python/Django" ]; then
source $BIN_DIR/steps/django source $BIN_DIR/steps/django
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment