Skip to content

Commit

Permalink
Allow periods in these names since it makes filtering versions easier
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Jan 9, 2024
1 parent bbacce2 commit 517b445
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,5 @@ buildScan {
}

static def safeName(String string) {
return string.replaceAll(/[^a-zA-Z0-9_\-]+/, ' ').trim().replaceAll(' ', '_').toLowerCase()
return string.replaceAll(/[^a-zA-Z0-9_\-\.]+/, ' ').trim().replaceAll(' ', '_').toLowerCase()
}

0 comments on commit 517b445

Please sign in to comment.