Skip to content

Commit f7d63a2

Browse files
committed
chore: Migrate mill to 0.11.6
1 parent ef62777 commit f7d63a2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.mill-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.13
1+
0.11.6

build.sc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ object `cs-m1-tests` extends ScalaModule {
5555
def ivyDeps = super.ivyDeps() ++ Seq(
5656
ivy"io.get-coursier:cli-tests_2.12:$coursierVersion"
5757
)
58-
object test extends Tests {
58+
object test extends ScalaTests {
5959
def ivyDeps = super.ivyDeps() ++ Seq(
6060
ivy"com.lihaoyi::utest::$utestVersion"
6161
)
@@ -132,7 +132,8 @@ object ci extends Module {
132132
computePublishVersion(state)
133133
}
134134
}
135-
def copyTo(task: mill.main.Tasks[PathRef], dest: os.Path) = T.command {
135+
def copyTo(task: mill.main.Tasks[PathRef], destPath: String) = T.command {
136+
val dest = os.Path(destPath, os.pwd)
136137
if (task.value.length > 1)
137138
sys.error("Expected a single task")
138139
val ref = task.value.head()

0 commit comments

Comments
 (0)