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 9b41b94 commit 03bf490Copy full SHA for 03bf490
test/dotc/build.scala
@@ -21,6 +21,8 @@ object build extends tests {
21
def main(args: Array[String]): Unit = {
22
println("------------ Building dotty ------------")
23
deleteFilesInFolder(new File(defaultOutputDir)) // clear previous output
24
+ val keepFile = new File(defaultOutputDir + ".keep")
25
+ keepFile.createNewFile()
26
dotty // build output dir
27
val p = Runtime.getRuntime.exec(Array("jar", "cf", "dotty.jar", "-C", "out", "."))
28
p.waitFor()
0 commit comments