
set -e 

if test $# -eq 0 ; then
  for f in [A-Za-z]*.bug ; do
    rm -f ${f%.bug}.html
    awiki --title "GNU Arch Bugs" -N ../gnuarch.css -n ../top-nav.txt -r .. $f > ${f%.bug}.html
  done
else
  for f in "$@" ; do
    rm -f ${f%.bug}.html
    awiki --title "GNU Arch Bugs" -N ../gnuarch.css -n ../top-nav.txt -r .. $f > ${f%.bug}.html
  done
fi


# arch-tag: Tom Lord Sun Feb  6 16:23:24 2005 (all-bugs/=update)
