Skip to content

Commit 55a2096

Browse files
authored
Merge pull request #582 from romanowski/fix-master
Replace .scala remining .scala directories
2 parents 0f33af5 + fd3a5f5 commit 55a2096

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/integration/src/test/scala/scala/cli/integration/CompileTestDefinitions.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ abstract class CompileTestDefinitions(val scalaVersionOpt: Option[String])
310310
os.proc(TestUtil.cli, "compile", extraOptions, javaSemDbOptions, ".")
311311
.call(cwd = root)
312312

313-
val files = os.walk(root / ".scala")
313+
val files = os.walk(root / Constants.workspaceDirName)
314314
val semDbFiles = files
315315
.filter(_.last.endsWith(".semanticdb"))
316316
.filter(!_.segments.exists(_ == "bloop-internal-classes"))
@@ -340,7 +340,7 @@ abstract class CompileTestDefinitions(val scalaVersionOpt: Option[String])
340340
os.proc(TestUtil.cli, "compile", extraOptions, "--semantic-db", ".")
341341
.call(cwd = root)
342342

343-
val files = os.walk(root / ".scala")
343+
val files = os.walk(root / Constants.workspaceDirName)
344344
val semDbFiles = files
345345
.filter(_.last.endsWith(".semanticdb"))
346346
.filter(!_.segments.exists(_ == "bloop-internal-classes"))

sclicheck/sclicheck.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def checkFile(file: os.Path, options: Options): Unit =
163163

164164
cmd match
165165
case Commands.Run(cmds, shouldFail, _) =>
166-
val script = out / ".scala" / "run.sh"
166+
val script = out / ".scala-build" / "run.sh"
167167
os.write.over(script, mkBashScript(cmds), createFolders = true)
168168
os.perms.set(script, "rwxr-xr-x")
169169
val res = os.proc(script).call(cwd = out, mergeErrIntoOut = true, check = false)

0 commit comments

Comments
 (0)