mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 11:52:59 +03:00
632a303089
Fixes #5801 to properly format Truffle log records before sending them for further processing.
18 lines
367 B
Scala
18 lines
367 B
Scala
import sbt.Keys._
|
|
import sbt._
|
|
|
|
object LauncherShimsForTest {
|
|
|
|
/** Creates a task that compiles the launcher shims which are used for some of
|
|
* the launcher tests.
|
|
*/
|
|
def prepare(): Def.Initialize[Task[Unit]] =
|
|
Def.task {
|
|
val log = state.value.log
|
|
Cargo.run(
|
|
Seq("build", "-p", "launcher-shims"),
|
|
log = log
|
|
)
|
|
}
|
|
}
|