popping the empty directory back up again, no matter how much
"cvs rm 10; rm -rf 10" and removing the "10" line from CVS/Entries
I do. Die, damn you, *DIE*!
#!/usr/bin/perl -w
-# $Id: mkanswers,v 1.3 2002-11-20 22:50:45 mike Exp $
+# $Id: mkanswers,v 1.4 2002-11-20 23:10:17 mike Exp $
use IO::File;
use strict;
while (<sections/*>) {
my $sdir = $_;
s@sections/@@;
- next if /^CVS$/;
+ next if /^CVS$/ || /^10$/; # I _can't_ get CVS to stop extracting "10"
print "answering section $_ - ", read_file("$sdir/name"), "\n";
while (<$sdir/*.cql>) {
#!/usr/bin/perl -w
-# $Id: runtests,v 1.5 2002-11-20 17:55:46 mike Exp $
+# $Id: runtests,v 1.6 2002-11-20 23:10:17 mike Exp $
use IO::File;
use strict;
while (<sections/*>) {
my $sdir = $_;
s@sections/@@;
+ next if /^CVS$/ || /^10$/;
print "testing section $_ - ", read_file("$sdir/name"), "\n";
while (<$sdir/*.cql>) {