Commit 90cc426c authored by Kenneth Reitz's avatar Kenneth Reitz

force sed to be line buffered

parent 550a2395
...@@ -175,7 +175,7 @@ fi ...@@ -175,7 +175,7 @@ fi
# Install dependencies with Pip. # 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 | indent # | cleanup | indent pip install --use-mirrors -r requirements.txt --exists-action=w --src=./.heroku/src | cleanup | indent
# Django collectstatic support. # Django collectstatic support.
source $BIN_DIR/steps/collectstatic source $BIN_DIR/steps/collectstatic
......
...@@ -8,7 +8,7 @@ indent() { ...@@ -8,7 +8,7 @@ indent() {
# Clean up pip output # Clean up pip output
cleanup() { cleanup() {
sed -e 's/\.\.\.\+/.../g' | sed -e '/already satisfied/Id' | sed -e '/Overwriting/Id' | sed -e '/python executable/Id' | sed -e '/no previously-included files/Id' sed -l -e 's/\.\.\.\+/.../g' | sed -e '/already satisfied/Id' | sed -l -e '/Overwriting/Id' | sed -l -e '/python executable/Id' | sed -l -e '/no previously-included files/Id'
} }
# Virtualenv wrapper. # Virtualenv wrapper.
......
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