We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e81c9c5 commit 94b2309Copy full SHA for 94b2309
server/android/build.gradle.kts
@@ -29,8 +29,10 @@ java {
29
}
30
31
tasks.register<Copy>("copyGuiAssets") {
32
+ val target = layout.projectDirectory.dir("src/main/resources/web-gui")
33
+ delete(target)
34
from(rootProject.layout.projectDirectory.dir("gui/dist"))
- into(layout.projectDirectory.dir("src/main/resources/web-gui"))
35
+ into(target)
36
if (inputs.sourceFiles.isEmpty) {
37
throw GradleException("You need to run \"pnpm run build\" on the gui folder first!")
38
0 commit comments