From 05f0015867330405618ff15fe149562b06bbc442 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Tue, 15 Mar 2011 01:54:20 +0200 Subject: [PATCH] BUG: Fix sed in docs build script. --- doc/push_github | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/push_github b/doc/push_github index 5a7f60a1..9b3db2df 100755 --- a/doc/push_github +++ b/doc/push_github @@ -38,8 +38,8 @@ rm -rf ./* cp -r /tmp/scikits.image.docs/* . # github doesn't like directories starting with "_" -sed -i "" 's/_static/static/g' `find . -name "*.html"` -sed -i "" 's/_images/images/g' `find . -name "*.html"` +sed -i 's/_static/static/g' `find . -name "*.html"` +sed -i 's/_images/images/g' `find . -name "*.html"` mv _static static mv _images images for f in `find . | grep "./" | grep -v ".git"`; do