]> de.git.xonotic.org Git - xonotic/xonotic.git/commitdiff
remove a sleep 10 debug command
authorRudolf Polzer <divverent@alientrap.org>
Mon, 21 Jun 2010 14:25:52 +0000 (16:25 +0200)
committerRudolf Polzer <divverent@alientrap.org>
Mon, 21 Jun 2010 14:25:52 +0000 (16:25 +0200)
misc/tools/cached-converter.sh

index 8b659ac87ff89952bd98bb5601b2a45b658e1fc6..f09f8e755a1c4d317af9fc04889f9f9506c29392 100755 (executable)
@@ -37,13 +37,9 @@ cached()
        tempfile1="${name1%/*}/new-${name1##*/}"
        [ -z "$outfile2" ] || tempfile2="${name2%/*}/new-${name2##*/}"
        if [ -f "$name1" ]; then
-               echo "$name1 already there, caching"
-               sleep 10
                ln "$name1" "$outfile1" 2>/dev/null || cp "$name1" "$outfile1"
                [ -z "$outfile2" ] || ln "$name2" "$outfile2" 2>/dev/null || cp "$name2" "$outfile2"
        elif "$method" "$infile1" "$infile2" "$tempfile1" "$tempfile2" "$@"; then
-               echo "$name1 not there, making"
-               sleep 10
                mv "$tempfile1" "$name1"
                [ -z "$outfile2" ] || mv "$tempfile2" "$name2"
                ln "$name1" "$outfile1" 2>/dev/null || cp "$name1" "$outfile1"