This reverts commit eb23730432aaeeef35b85feb013942175ae504f8, reversing changes made to 1f0191190bcd9dfce903cf5af155ee114d00ac4b. Only undo the permission changes Conflicts: Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_example_OM.cpp Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Hole_filling/Weights.h Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/fair_impl.h Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_hole.h
13 lines
283 B
Bash
Executable File
13 lines
283 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
setopt extendedglob nullglob
|
|
|
|
files=(((^build*)/)#(#i)*.^(py|sh|run|sh|csh|pl|perl|bin|out)(.x))
|
|
#ls -1 ((^build*)/)#(#i)*.^(py|sh|run|sh|csh|pl|perl|bin|out)(.x) 2>/dev/null || exit 0
|
|
if [ ${#files[@]} -gt 0 ]; then
|
|
ls -1 "${(@)files}"
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|