diff -r 4f2482f1dd48 -r cfde8b1784f7 common/tools/populateziptemplate.pl --- a/common/tools/populateziptemplate.pl Tue Jul 14 10:47:57 2009 +0100 +++ b/common/tools/populateziptemplate.pl Wed Jul 15 13:30:58 2009 +0100 @@ -25,7 +25,8 @@ my $sourcesCSV = shift or die "First arg must be source csv file"; my $template = shift or die "Second arg must be template file"; my $ftl = shift or die "Third arg must be output file"; -shift and die "No more than three arguments please"; +my $rndExcludes = shift or die "Fourth arg must be rnd-excludes file"; +shift and die "No more than four arguments please"; # Load CSV open my $csvText, "<", $sourcesCSV or die; @@ -141,6 +142,6 @@ $xml->XMLout($zipConfig, OutputFile => $ftl, XMLDecl => 1, RootName => 'build', KeyAttr => $keyAttr); # Output all rnd files into exclude list for later -open FILE, "> rnd_excludefile.txt" or die "Cannot write exludefile!"; -print FILE @allRndFiles; -close FILE; \ No newline at end of file +open my $fh, ">", $rndExcludes or die "Cannot write exlude file!"; +print $fh @allRndFiles; +close $fh;