Skip to content

Commit

Permalink
fix: fix building error in bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
duruer committed Feb 24, 2024
1 parent 3d55ceb commit 5c28f02
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,20 +78,16 @@ tasks {

register("copyJar") {
pluginsDir?.let {
doLast {
copy {
from(shadowJar.get().archiveFile.get().asFile.absolutePath)
into(it)
}
copy {
from(shadowJar.get().archiveFile.get().asFile.absolutePath)
into(it)
}
}
}

build {
dependsOn(shadowJar)
doLast {
dependsOn("copyJar")
}
dependsOn("copyJar")
}
}

Expand Down

0 comments on commit 5c28f02

Please sign in to comment.