Cleaner mkpuzzles output

This commit is contained in:
Neale Pickett 2010-10-25 15:52:18 -06:00
parent 46549af7fd
commit 9e8f0b39ed
2 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,2 @@
* claim.cgi not exiting (maybe fixed?)
* get LAUR for contest
* steg point values

View File

@ -96,18 +96,21 @@ for dn in $indir/[0-9]*; do
fi
# Append keys
if ! [ -f $dn/key ]; then
if [ -f $dn/key ]; then
while read answer; do
echo $points $answer >> $uanswers
done < $dn/key
else
echo "$dn/key: No such file or directory" 1>&2
exit 1
fi
while read answer; do
echo $points $answer >> $uanswers
done < $dn/key
# Append summary
while read line; do
echo $points $line >> $usummary
done < $dn/summary
if [ -f $dn/summary ]; then
while read line; do
echo $points $line >> $usummary
done < $dn/summary
fi
# Generate index now that we have a list of files
if [ -f $dn/index.mdwn ]; then