Mix my previous commit (revision 45481): that script is perl, and not sh!

This commit is contained in:
Laurent Rineau 2008-09-10 11:20:22 +00:00
parent 3a825a09ae
commit dfd7e8e44c
1 changed files with 1 additions and 1 deletions

View File

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