Blacklist "icons" and "resources" in create_internal_release, so that

icons_Demos and resources_Demos are not created in internal releases.
This commit is contained in:
Laurent Rineau 2008-09-10 10:44:21 +00:00
parent 5c22a66393
commit 1be2c0b381
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ sub CreateDemoTestDirs()
chdir "$RELEASEDIR/$VERSION" or die; chdir "$RELEASEDIR/$VERSION" or die;
chdir 'demo' or return; chdir 'demo' or return;
foreach $DIR (glob("*")) { foreach $DIR (glob("*")) {
if ( -d $DIR ) { if ( -d $DIR -a "$DIR" != "icons" -a "$DIR" != "resources" ) {
dircopy("$DIR", "../test/${DIR}_Demo"); dircopy("$DIR", "../test/${DIR}_Demo");
} }
} }