summaryrefslogtreecommitdiff
path: root/docs/pages/6 - Extending Mill.md
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-17 23:55:23 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-18 00:25:23 -0800
commitfa203eab9264e337e666395c686717dbf98a045c (patch)
tree0c2263055602c6fa91fa011e0b88fb4908cc0a52 /docs/pages/6 - Extending Mill.md
parentcb40d831b4281bd8bfdbd3302deaf752c8ca8e33 (diff)
downloadmill-fa203eab9264e337e666395c686717dbf98a045c.tar.gz
mill-fa203eab9264e337e666395c686717dbf98a045c.tar.bz2
mill-fa203eab9264e337e666395c686717dbf98a045c.zip
attempt to git pull when doing publish-local.sh to ensure tags appear locally0.1.0
Diffstat (limited to 'docs/pages/6 - Extending Mill.md')
-rw-r--r--docs/pages/6 - Extending Mill.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/pages/6 - Extending Mill.md b/docs/pages/6 - Extending Mill.md
index cff03ff2..e5b655f5 100644
--- a/docs/pages/6 - Extending Mill.md
+++ b/docs/pages/6 - Extending Mill.md
@@ -18,11 +18,12 @@ isn't covered by the built-in `ScalaModule`s/`ScalaJSModule`s, simply write a
custom Target (for cached computations) or Command (for un-cached actions) and
you're done.
-For filesystem operations, you can use the
+For subprocess/filesystem operations, you can use the
[Ammonite-Ops](http://ammonite.io/#Ammonite-Ops) library that comes bundled with
-Mill, or even plain `java.nio`. Each target gets it's own
-[T.ctx().dest](/page/tasks#millutilctxdestctx) folder that you can use to place
-files without worrying about colliding with other targets
+Mill, or even plain `java.nio`/`java.lang.Process. Each target gets it's own
+[T.ctx().dest](http://www.lihaoyi.com/mill/page/tasks#millutilctxdestctx) folder
+that you can use to place files without worrying about colliding with other
+targets.
This covers use cases like: