mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 05:29:30 +00:00
Add release_notes.rst. Change version to 0.9.5 in preparation for test release.
This commit is contained in:
@@ -108,6 +108,8 @@ write_index() {
|
||||
echo " $section_filename" >> $RST/index.rst
|
||||
done
|
||||
|
||||
echo " release_notes" >> $RST/index.rst
|
||||
|
||||
echo ".. toctree::" >> $RST/tools.rst
|
||||
echo " :hidden:" >> $RST/tools.rst
|
||||
echo >> $RST/tools.rst
|
||||
@@ -130,10 +132,15 @@ if [ $# -gt 0 ]; then
|
||||
done
|
||||
fi
|
||||
|
||||
if [ "$DOCS/percona-toolkit.pod" -nt "$RST/index.rst" ]; then
|
||||
if [ ! -f "$RST/index.rst" ] || [ "$DOCS/percona-toolkit.pod" -nt "$RST/index.rst" ]; then
|
||||
write_index
|
||||
fi
|
||||
|
||||
if [ ! -f "$RST/release_notes.rst" ] || [ "$DOCS/release_notes.rst" -nt "$RST/release_notes.rst" ]; then
|
||||
cp $DOCS/release_notes.rst $RST/
|
||||
echo "Wrote $RST/release_notes.rst"
|
||||
fi
|
||||
|
||||
BUILD=${BUILD:-1}
|
||||
if [ $BUILD -eq 1 ]; then
|
||||
# -W treats warnings as errors; remove it to ignore warnings if you must.
|
||||
|
Reference in New Issue
Block a user