2016-02-25 02:34:14 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# This script rewrites [GH-nnnn]-style references in the CHANGELOG.md file to
|
|
|
|
# be Markdown links to the given github issues.
|
|
|
|
#
|
|
|
|
# This is run during releases so that the issue references in all of the
|
|
|
|
# released items are presented as clickable links, but we can just use the
|
|
|
|
# easy [GH-nnnn] shorthand for quickly adding items to the "Unrelease" section
|
|
|
|
# while merging things between releases.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2016-03-16 15:46:52 +01:00
|
|
|
if [[ ! -f CHANGELOG.md ]]; then
|
|
|
|
echo "ERROR: CHANGELOG.md not found in pwd."
|
|
|
|
echo "Please run this from the root of the terraform source repository"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-02-25 02:34:14 +01:00
|
|
|
|
2016-03-16 15:46:52 +01:00
|
|
|
if [[ `uname` == "Darwin" ]]; then
|
|
|
|
echo "Using BSD sed"
|
|
|
|
SED="sed -i.bak -E -e"
|
|
|
|
else
|
|
|
|
echo "Using GNU sed"
|
|
|
|
SED="sed -i.bak -r -e"
|
|
|
|
fi
|
|
|
|
|
|
|
|
$SED 's/\[GH-([0-9]+)\]/\(\[#\1\]\(https:\/\/github.com\/hashicorp\/terraform\/issues\/\1\)\)/g' CHANGELOG.md
|
|
|
|
|
|
|
|
rm CHANGELOG.md.bak
|