Skip to content

Commit

Permalink
Use trailing commas in build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Aug 29, 2023
1 parent 83474b8 commit 701e90a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ tasks.jar {
"Specification-Version" to project.version,
"Specification-Vendor" to "HiveMQ GmbH",
"Main-Class" to application.mainClass.get(),
"Built-Date" to SimpleDateFormat("yyyy-MM-dd").format(Date())
"Built-Date" to SimpleDateFormat("yyyy-MM-dd").format(Date()),
)
}

Expand Down Expand Up @@ -604,7 +604,7 @@ githubRelease {
buildBrewZip,
buildDebianPackage.map { fileTree(it.destinationDir) },
buildRpmPackage.map { fileTree(it.destinationDir) },
buildWindowsZip
buildWindowsZip,
)
allowUploadToExisting.set(true)
}
Expand Down

0 comments on commit 701e90a

Please sign in to comment.