
echo "updating index of all bugs..."
rm -f indexes/all-bugs-index.txt
scripts/all-bugs-index > indexes/all-bugs-index.txt


echo "updating index of all bugs by date..."
rm -f indexes/all-bugs-by-date-index.txt
scripts/all-bugs-by-date-index > indexes/all-bugs-by-date-index.txt

echo "updating index of all bugs last update..."
rm -f indexes/recent-update.txt
scripts/recent-updates > indexes/recent-update.txt

echo "updating index of open bugs..."
rm -f indexes/open-bugs-index.txt
scripts/open-bugs > indexes/open-bugs-index.txt

echo "updating index of closed bugs..."
rm -f indexes/closed-bugs-index.txt
scripts/closed-bugs > indexes/closed-bugs-index.txt

echo "updating index of bugs by submitter..."
rm -f indexes/bugs-by-submitter-index.txt
scripts/by-submitter > indexes/bugs-by-submitter-index.txt

echo "awikifying ..."
tla inventory --source | grep =update | xargs -n 1 dirname | xargs -n 1 sh -c 'echo updating $0; cd $0; sh =update'


# arch-tag: Tom Lord Sun Feb  6 15:30:31 2005 (bugs/=meta-update)

