Remove temporary files.

This commit is contained in:
hjp 2000-02-08 17:18:20 +00:00
parent 934afac99c
commit 94e89d77e8
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!@@@perl@@@ -w
#
# $Id: cvsdiffmin.pl,v 1.1 2000-02-08 16:58:28 hjp Exp $
# $Id: cvsdiffmin.pl,v 1.2 2000-02-08 17:18:20 hjp Exp $
#
# cvsdiffmin - minimize output of cvs diff
#
@ -50,6 +50,8 @@ while (<>) {
print;
}
close(DIFF);
unlink ("cvsdiffmin.$$.$count.1", "cvsdiffmin.$$.$count.2")
or die "cannot unlink temporary files cvsdiffmin.$$.$count.1, cvsdiffmin.$$.$count.2: $!";
$state = 'EQ';