Skip to content

Commit

Permalink
fix version format
Browse files Browse the repository at this point in the history
  • Loading branch information
cranberry3148 committed Jan 6, 2025
1 parent e2389d9 commit 09ea425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
group = "cc.modlabs"

version = Calendar.getInstance(TimeZone.getTimeZone("UTC")).run {
"${get(Calendar.YEAR)}.${get(Calendar.MONTH) + 1}.${get(Calendar.DAY_OF_MONTH)}.${get(Calendar.HOUR_OF_DAY)}${get(Calendar.MINUTE)}"
"${get(Calendar.YEAR)}.${get(Calendar.MONTH) + 1}.${get(Calendar.DAY_OF_MONTH)}.${String.format("%02d%02d", get(Calendar.HOUR_OF_DAY), get(Calendar.MINUTE))}"
}

repositories {
Expand Down

0 comments on commit 09ea425

Please sign in to comment.