From 97d59298023f26cb3b5e5f5d6c5705551146f89e Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 3 Sep 2009 23:47:45 +0000 Subject: [PATCH] - Remove all directories whose name begins with "bench" from the public release (CGAL-3.5 is affected as well). - Fix the removal of .scm-urls files --- Scripts/developer_scripts/create_new_release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/developer_scripts/create_new_release b/Scripts/developer_scripts/create_new_release index 62768201466..c1801bb14d7 100755 --- a/Scripts/developer_scripts/create_new_release +++ b/Scripts/developer_scripts/create_new_release @@ -265,9 +265,9 @@ if [ -n "$DO_PUBLIC" ]; then mv ${release_name} $public_release_name cd ${public_release_name} - rm -rf test package_info developer_scripts doc_tex winutils include/CGAL/Test include/CGAL/Testsuite/ + rm -rf bench* Bench* test package_info developer_scripts doc_tex winutils include/CGAL/Test include/CGAL/Testsuite/ rm -f examples/*/cgal_test* demo/*/cgal_test* - find . -name .scm-urls -exec rm '{}+' + find . -name .scm-urls -exec rm '{}' '+' sed -i -e "s/define CGAL_VERSION .*/define CGAL_VERSION $public_release_version/" -e "s/define CGAL_VERSION_NR .*/define CGAL_VERSION_NR $public_release_number/" include/CGAL/version.h echo -n $public_release_version > VERSION 2>&1 cd ..