From be32aa43c4191e1f37c8b1d10d2f9593d316465a Mon Sep 17 00:00:00 2001 From: Brad Rogers Date: Tue, 10 Nov 2020 15:33:49 -0500 Subject: [PATCH] Fix links in release notes to be absolute --- scripts/release_note_generator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release_note_generator.sh b/scripts/release_note_generator.sh index cb6e945d..be7d47d3 100644 --- a/scripts/release_note_generator.sh +++ b/scripts/release_note_generator.sh @@ -5,5 +5,5 @@ echo "Getting commit history since $last_version" num_commits=$(git rev-list --count $last_version..HEAD) echo "Found $num_commits commits since last revision" git_log=$(git log -n $num_commits --pretty="format:* %s %n") -linked_log=$(echo "Release Notes: \n\n$git_log" | sed -e 's/#\([0-9]*\)/[#\1](github.com\/dropbox\/dropbox-sdk-python\/pull\/\1)/g') +linked_log=$(echo "Release Notes: \n\n$git_log" | sed -e 's/#\([0-9]*\)/[#\1](https:\/\/github.com\/dropbox\/dropbox-sdk-python\/pull\/\1)/g') echo "\n\n$linked_log" \ No newline at end of file