equal
deleted
inserted
replaced
211 |
211 |
212 $xml->XMLout($zipConfig, OutputFile => $ftl, XMLDecl => 1, RootName => 'build', keyattr => $keyAttr); |
212 $xml->XMLout($zipConfig, OutputFile => $ftl, XMLDecl => 1, RootName => 'build', keyattr => $keyAttr); |
213 |
213 |
214 # Output all rnd files into exclude list for later |
214 # Output all rnd files into exclude list for later |
215 open my $fh, ">", $rndExcludes or die "Cannot write exlude file!"; |
215 open my $fh, ">", $rndExcludes or die "Cannot write exlude file!"; |
216 print $fh @allRndFiles; |
216 foreach (@allRndFiles) |
|
217 { |
|
218 print $fh "$_\n"; |
|
219 } |
217 close $fh; |
220 close $fh; |
218 |
221 |