mirror of https://github.com/CGAL/cgal
parent
1f3d820a42
commit
2ca0e52a85
|
|
@ -75,7 +75,7 @@ Data structures specialized to classify clusters.
|
|||
\cgalPkgDependsOn{\ref PkgSolverInterface, \ref PkgSpatialSearchingD}
|
||||
\cgalPkgBib{cgal:lm-clscm-12}
|
||||
\cgalPkgLicense{\ref licensesGPL "GPL"}
|
||||
\cgalPkgDemo{Operations on Polyhedra,polyhedron_3.zip}
|
||||
\cgalPkgDemo{CGAL Lab,CGALlab.zip}
|
||||
\cgalPkgShortInfoEnd
|
||||
|
||||
\cgalPkgDescriptionEnd
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@ pushd Triangulation_on_sphere_2_Demo_with_dlls; zip -r ../triangulation_on_spher
|
|||
|
||||
# CGAL-6.0
|
||||
pushd Lab_Demo_with_dlls; zip -r ../CGALlab.zip *; popd
|
||||
pushd Arrangement_on_surface_2_earth_Demo_with_dlls; zip -r ../arrangements_2_earth.zip *; popd
|
||||
|
||||
# check
|
||||
echo CHECK now. The following lines should be empty.
|
||||
|
|
|
|||
|
|
@ -21,6 +21,12 @@
|
|||
|
||||
set -e # Exit the script on first error, for safety
|
||||
|
||||
err_report() {
|
||||
echo "Error (code $?) on line $(caller)"
|
||||
}
|
||||
|
||||
trap 'err_report $LINENO' ERR
|
||||
|
||||
PREVIOUS_MAJOR_RELEASE=$1
|
||||
CURRENT_RELEASE=$2
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue