Skip to content

Commit

Permalink
Remove leading v in tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicasyu committed Oct 20, 2023
1 parent 37867a8 commit f33a528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jacocoTestReport {
jar {
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
duplicatesStrategy = DuplicatesStrategy.INCLUDE
archiveFileName.set("${project.name}-${gitVersion()}.jar")
archiveFileName.set("${project.name}-${gitVersion().substring(1)}.jar")
manifest {
attributes["Main-Class"] = "arcade.core.gui.GUI"
}
Expand Down

0 comments on commit f33a528

Please sign in to comment.