Skip to content

Commit

Permalink
✏️ Shut up, set the correct type
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed Aug 9, 2023
1 parent 03ce3c4 commit 9e2d161
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 @@ -10,8 +10,8 @@ plugins {
}

val archivesBaseName = "${project.property("archives_base_name").toString()}+mc${libs.versions.minecraft.get()}"
version = project.property("mod_version")!!
group = project.property("maven_group")!!
version = project.property("mod_version").toString()
group = project.property("maven_group").toString()

repositories {
maven { url = uri("https://api.modrinth.com/maven") }
Expand Down

0 comments on commit 9e2d161

Please sign in to comment.