summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/readme.md b/readme.md
index 7ae9ac67..67e385e6 100644
--- a/readme.md
+++ b/readme.md
@@ -25,26 +25,26 @@ core unit tests
e.g.:
```bash
-./bin/target/mill core.compile
-./bin/target/mill core.test.compile
-./bin/target/mill core.test
-./bin/target/mill scalalib.assembly
+./target/bin/mill core.compile
+./target/bin/mill core.test.compile
+./target/bin/mill core.test
+./target/bin/mill scalalib.assembly
```
There is already a `watch` option that looks for changes on files, e.g.:
```bash
-./bin/target/mill --watch core.compile
+./target/bin/mill --watch core.compile
```
You can get Mill to show the JSON-structured output for a particular `Target` or
`Command` using the `--show` flag:
```bash
-./bin/target/mill --show core.scalaVersion
-./bin/target/mill --show core.compile
-./bin/target/mill --show core.assemblyClasspath
-./bin/target/mill --show core.test
+./target/bin/mill --show core.scalaVersion
+./target/bin/mill --show core.compile
+./target/bin/mill --show core.assemblyClasspath
+./target/bin/mill --show core.test
```
Output will be generated into a the `./out` folder.
@@ -61,7 +61,7 @@ sbt "~bin/test:run"
Lastly, you can generate IntelliJ Scala project files using Mill via
```bash
-./bin/target/mill idea
+./target/bin/mill idea
```
Allowing you to import a Mill project into Intellij without using SBT
@@ -137,7 +137,7 @@ Mill provides a build REPL, which lets you explore the build interactively and
run `Target`s from Scala code:
```scala
-lihaoyi mill$ bin/target/mill
+lihaoyi mill$ target/bin/mill
Loading...
Compiling (synthetic)/ammonite/predef/interpBridge.sc
Compiling (synthetic)/ammonite/predef/replBridge.sc
@@ -290,7 +290,7 @@ git clean -xdf
sbt bin/test:assembly
# Build Mill executable using the Mill executable generated by SBT
-bin/target/mill devAssembly
+target/bin/mill devAssembly
# Build Mill executable using the Mill executable generated by Mill itself
out/devAssembly/dest devAssembly