Bug 299 populateziptemplate.pl aborts if it cannot determine the license for a source component
Changed so that even if it encounters an error it will still generate the output file before it exits with a failure error code.
#!perl -w
use strict;
my @includefiles = glob "*_includefile.txt";
foreach (@includefiles)
{
my $includefilename=$_;
if (m/(.*)(_includefile.txt)/) {
my $zipfilename = $1.".zip";
system("7za a -tzip -i@".$includefilename . " " .$zipfilename);
}
}