Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.13
0.11.6
5 changes: 3 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ object `cs-m1-tests` extends ScalaModule {
def ivyDeps = super.ivyDeps() ++ Seq(
ivy"io.get-coursier:cli-tests_2.12:$coursierVersion"
)
object test extends Tests {
object test extends ScalaTests {
def ivyDeps = super.ivyDeps() ++ Seq(
ivy"com.lihaoyi::utest::$utestVersion"
)
Expand Down Expand Up @@ -132,7 +132,8 @@ object ci extends Module {
computePublishVersion(state)
}
}
def copyTo(task: mill.main.Tasks[PathRef], dest: os.Path) = T.command {
def copyTo(task: mill.main.Tasks[PathRef], destPath: String) = T.command {
val dest = os.Path(destPath, millSourcePath)
if (task.value.length > 1)
sys.error("Expected a single task")
val ref = task.value.head()
Expand Down