mirror of https://github.com/CGAL/cgal
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:
parent
5c22a66393
commit
1be2c0b381
|
|
@ -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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue