summaryrefslogtreecommitdiff
path: root/main/core/src/mill/define/Ctx.scala
diff options
context:
space:
mode:
Diffstat (limited to 'main/core/src/mill/define/Ctx.scala')
-rw-r--r--main/core/src/mill/define/Ctx.scala6
1 files changed, 2 insertions, 4 deletions
diff --git a/main/core/src/mill/define/Ctx.scala b/main/core/src/mill/define/Ctx.scala
index ba4fae9e..c21e53b4 100644
--- a/main/core/src/mill/define/Ctx.scala
+++ b/main/core/src/mill/define/Ctx.scala
@@ -1,8 +1,6 @@
package mill.define
-import ammonite.ops.Path
-
import scala.annotation.implicitNotFound
sealed trait Segment{
@@ -18,7 +16,7 @@ object Segment{
case class Cross(value: Seq[Any]) extends Segment
}
-case class BasePath(value: Path)
+case class BasePath(value: os.Path)
/**
@@ -64,7 +62,7 @@ object Segments {
case class Ctx(enclosing: String,
lineNum: Int,
segment: Segment,
- millSourcePath: Path,
+ millSourcePath: os.Path,
segments: Segments,
overrides: Int,
external: Boolean,