Skip to content

Commit 84448bb

Browse files
Fix links in release notes to be absolute (dropbox#287)
Co-authored-by: Karandeep Johar <karandeepjohar@gmail.com>
1 parent c671897 commit 84448bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release_note_generator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ echo "Getting commit history since $last_version"
55
num_commits=$(git rev-list --count $last_version..HEAD)
66
echo "Found $num_commits commits since last revision"
77
git_log=$(git log -n $num_commits --pretty="format:* %s %n")
8-
linked_log=$(echo "Release Notes: \n\n$git_log" | sed -e 's/#\([0-9]*\)/[#\1](github.com\/dropbox\/dropbox-sdk-python\/pull\/\1)/g')
8+
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')
99
echo "\n\n$linked_log"

0 commit comments

Comments
 (0)