[ci skip] make 'runShadow' workingDir use the 'run' directory (#1398)

This commit is contained in:
powercas_gamer
2024-09-14 13:02:08 +02:00
committed by GitHub
parent 0cd069ecbf
commit 6f6d55e9e6
2 changed files with 17 additions and 1 deletions

View File

@@ -92,6 +92,15 @@ tasks {
dependsOn(configurateBuildTask)
from(zipTree(configurateBuildTask.map { it.outputs.files.singleFile }))
}
runShadow {
workingDir = file("run").also(File::mkdirs)
standardInput = System.`in`
}
named<JavaExec>("run") {
workingDir = file("run").also(File::mkdirs)
standardInput = System.`in` // Doesn't work?
}
}
dependencies {