summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/3 - Common Project Layouts.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/pages/3 - Common Project Layouts.md b/docs/pages/3 - Common Project Layouts.md
index 3af47a45..a0e3afbe 100644
--- a/docs/pages/3 - Common Project Layouts.md
+++ b/docs/pages/3 - Common Project Layouts.md
@@ -148,7 +148,7 @@ Once you've mixed in `PublishModule`, you can publish your libraries to maven
central via:
```bash
-target/bin/mill mill.scalalib.PublishModule/publishAll \
+mill mill.scalalib.PublishModule/publishAll \
lihaoyi:$SONATYPE_PASSWORD \
$GPG_PASSWORD \
foo.publishArtifacts
@@ -159,7 +159,7 @@ them manually. You can also pass in the `--release true` flag to perform the
staging/release automatically:
```bash
-target/bin/mill mill.scalalib.PublishModule/publishAll \
+mill mill.scalalib.PublishModule/publishAll \
lihaoyi:$SONATYPE_PASSWORD \
$GPG_PASSWORD \
foo.publishArtifacts \
@@ -170,7 +170,7 @@ If you want to publish/release multiple modules, you can use the `_` or `__`
wildcard syntax:
```bash
-target/bin/mill mill.scalalib.PublishModule/publishAll \
+mill mill.scalalib.PublishModule/publishAll \
lihaoyi:$SONATYPE_PASSWORD \
$GPG_PASSWORD \
__.publishArtifacts \
@@ -223,4 +223,4 @@ A relatively complex build with numerous submodules, some cross-built across
Scala major versions while others are cross-built against Scala minor versions.
Also demonstrates how to pass one module's compiled artifacts to the
-`run`/`test` commands of another, via their `forkEnv`. \ No newline at end of file
+`run`/`test` commands of another, via their `forkEnv`.