]> git.decadent.org.uk Git - dak.git/commitdiff
update regex, closing #111349
authorRyan Murray <rmurray@debian.org>
Sun, 9 Dec 2001 04:41:59 +0000 (04:41 +0000)
committerRyan Murray <rmurray@debian.org>
Sun, 9 Dec 2001 04:41:59 +0000 (04:41 +0000)
update-bugdoctxt

index 1869e0ff720c84af1b30423c232b1682b2f5051a..d5568f58ce23b865bd1c7c95b615ec9c9eafd70c 100755 (executable)
@@ -13,7 +13,7 @@ convert () {
        src=$1; dst=$2
        rm -f .new-$dst
        echo Generating $dst from http://www.debian.org/Bugs/$src ...
-       lynx -nolist -dump $urlbase$src | sed -e 's/^ *$//' | perl -00 -ne 'exit if /Back to the Debian Project homepage/; print unless ($.==1 || $.==2 || $.==3 || /^\s*Other pages:$/m)' >.new-$dst
+       lynx -nolist -dump $urlbase$src | sed -e 's/^ *$//' | perl -00 -ne 'exit if /Back to the Debian Project homepage/; print unless ($.==1 || $.==2 || $.==3 || /^\s*Other BTS pages:$/m)' >.new-$dst
        if cmp -s .new-$dst $dst ; then rm -f .new-$dst
        else mv -f .new-$dst $dst
        fi