Skip to content

Commit

Permalink
fix npe
Browse files Browse the repository at this point in the history
  • Loading branch information
Kotori316 committed Nov 17, 2023
1 parent 64bf1dd commit 45acf61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ githubRelease {
""".stripIndent())
releaseAssets = files(
releaseAssets = files(
fileTree(project(":forge").layout.buildDirectory.dir("libs")) {
fileTree(findProject(":forge")?.layout?.buildDirectory?.dir("libs")) {
include("*.jar")
},
fileTree(project(":neoforge").layout.buildDirectory.dir("libs")) {
fileTree(findProject(":neoforge")?.layout?.buildDirectory?.dir("libs")) {
include("*.jar")
}
)
Expand Down

0 comments on commit 45acf61

Please sign in to comment.