From 90cc426c82d7514b159699ec2a91d4dcebb2ff2c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 2 Jan 2013 20:21:39 -0500 Subject: [PATCH] force sed to be line buffered --- bin/compile | 2 +- bin/utils | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index 5d0b568..4faafba 100755 --- a/bin/compile +++ b/bin/compile @@ -175,7 +175,7 @@ fi # Install dependencies with Pip. 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. source $BIN_DIR/steps/collectstatic diff --git a/bin/utils b/bin/utils index fbf7662..ca63e91 100755 --- a/bin/utils +++ b/bin/utils @@ -8,7 +8,7 @@ indent() { # Clean up pip output 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.