Skip to content

Commit

Permalink
fix(core): 调整commitCount增量值
Browse files Browse the repository at this point in the history
  • Loading branch information
xihan123 committed Jan 29, 2025
1 parent 38887b7 commit 60134c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ val keystoreProperties = Properties()
keystoreProperties.load(FileInputStream(keystorePropertiesFile))

val repo = jgit.repo()
val commitCount = (repo?.commitCount("refs/remotes/origin/master") ?: 200) + 25
val commitCount = (repo?.commitCount("refs/remotes/origin/master") ?: 200) + 2025
val latestTag = repo?.latestTag?.removePrefix("v") ?: "3.x.x-SNAPSHOT"

val verCode by extra(commitCount)
Expand Down

0 comments on commit 60134c0

Please # to comment.