Skip to content

Commit

Permalink
fix: remove consecutive hyphens from depNameSanitized (#8400)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jan 24, 2021
1 parent e5ce9f7 commit e0a1064
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/workers/repository/updates/flatten.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export async function flattenUpdates(
.replace('@', '')
.replace(/\//g, '-')
.replace(/\s+/g, '-')
.replace(/-+/, '-')
.toLowerCase()
: undefined;
if (
Expand Down

0 comments on commit e0a1064

Please sign in to comment.