Skip to content

Commit 305b64a

Browse files
committed
Test.
1 parent 0a01e68 commit 305b64a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ task jpackageMac(type: Exec, group: 'build') {
356356
'--description', 'Chatty - Twitch Chat Client',
357357
'--java-options', '-Xmx600M',
358358
'--icon', 'assets-bundle/Chatty.icns',
359-
'--app-version', project.version.replace("-",".").replace("b","0."),
359+
'--app-version', project.version.replaceAll(/[^0-9.]/, '').takeWhile { it != '.' }.padEnd(5, '.0'),
360360
'--vendor', 'Chatty']
361361

362362
commandLine command

0 commit comments

Comments
 (0)