@@ -8,7 +8,7 @@ plugins {
88
99// version number
1010def base_version = ' 1.5.0'
11- def base_release = ' beta2 '
11+ def base_release = ' beta3 '
1212def archive_version = " ${ base_version} -${ base_release} "
1313
1414version = " ${ base_version}${ base_release} "
@@ -215,7 +215,7 @@ def checkFilesExist(ArrayList<File> fileList, String destinationIfExists) {
215215tasks. register(" distZipWin" , Zip ) {
216216 dependsOn tasks. named(" distZip" )
217217
218- def destinationInZip = tasks. distZip. archiveBaseName. get() + " ${ File.separator} scripts${ File.separator} windows"
218+ def destinationInZip = tasks. distZip. archiveBaseName. get() + " - ${ version } ${ File.separator} scripts${ File.separator} windows"
219219 def zipOutputDestination = getZipOutputPath()
220220 def runtime = getDotnetRuntimeWin()
221221 def archiveName = tasks. distZip. archiveBaseName. get() + " .${ archive_version} .${ runtime} .zip"
@@ -239,7 +239,7 @@ tasks.register("distZipWin", Zip) {
239239tasks. register(" distZipLinux" , Zip ) {
240240 dependsOn tasks. named(" distZip" )
241241
242- def destinationInZip = tasks. distZip. archiveBaseName. get() + " ${ File.separator} scripts"
242+ def destinationInZip = tasks. distZip. archiveBaseName. get() + " - ${ version } ${ File.separator} scripts"
243243 def zipOutputDestination = getZipOutputPath()
244244 def runtime = getDotnetRuntimeLinux()
245245 def archiveName = tasks. distZip. archiveBaseName. get() + " .${ archive_version} .${ runtime} .zip"
0 commit comments