Skip to content

Commit de8d37a

Browse files
chore(scripts): fix BSD sed incompatibility(macOS) of changelog script (3845)
fix: fix BSD sed incompatibility of changelog script --- Merge branch 'eclipse-jkube:master' into fix-changelog-script
1 parent a37acde commit de8d37a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function addLinks() {
6565
currentLink="$START_LINK"
6666
if [ -n "$2" ]; then currentLink="$2" ; fi
6767
while read -r line; do
68-
issueNumber=$(echo "$line" | sed -En 's/.*?#([0-9]+).*/\1/p')
68+
issueNumber=$(echo "$line" | sed -En 's/.*#([0-9]+).*/\1/p')
6969
if [ -z "$issueNumber" ]; then
7070
lines+="$line\n";
7171
else

0 commit comments

Comments
 (0)