https://github.com/CGAL/cgal
Raw File
Tip revision: a7caa5c433f3c0d53553ce2e5fc7f2f1106d3725 authored by Sébastien Loriot on 20 September 2017, 10:53:27 UTC
Merge remote-tracking branch 'cgal/releases/CGAL-4.10-branch'
Tip revision: a7caa5c
update_CHANGES
#!/bin/sh

if html2text -rcfile html2textrc changes.html > CHANGES; then
  sed -i -e '0,/===============================================================================/ d' CHANGES
  sed -i -e '0,/===============================================================================/ d' CHANGES
fi
exit # remove this line to test the generation of CHANGES.md
if pandoc changes.html -t markdown-raw_html-native_divs-native_spans -o CHANGES.md; then
  sed -i -e '0,/^------------------------------------------------------------------------$/ d' CHANGES.md
  sed -i -e '0,/^------------------------------------------------------------------------$/ d' CHANGES.md
fi    

back to top