common/tools/mergeepoc32.pl
author Shabe Razvi <shaber@symbian.org>
Tue, 19 May 2009 17:40:43 +0100
changeset 125 c2478fad90aa
parent 104 5e724ff842b4
child 131 d33d43677cdf
permissions -rw-r--r--
Fix populateziptemplate.pl to work with new repo structure

#!perl -w
use strict;

# Assume that all rnd repositories are delivered onto the build machine in \rnd\category\name\epoc32\...

my @rndRepositories = glob "/rnd/*/*";
foreach (@rndRepositories)
{
	s{/}{\\}g;
	system("xcopy /Q/C/I/Y/E $_\\epoc32 \\epoc32 > nul:");
}