From b12830198cb317d106a51440329cfea40d23294c Mon Sep 17 00:00:00 2001 From: Moses Nakamura Date: Tue, 4 Oct 2016 22:00:49 +0000 Subject: [PATCH] Change --no-dryrun to the new flag in docs Testing Done: Travis passed, it is a doc-only change. Bugs closed: 3922 Reviewed at https://rbcommons.com/s/twitter/r/4280/ --- src/docs/release_jvm.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/release_jvm.md b/src/docs/release_jvm.md index 64dd326b81c..986945d5e4a 100644 --- a/src/docs/release_jvm.md +++ b/src/docs/release_jvm.md @@ -127,10 +127,10 @@ this, you can test out the publish in 2 ways: and why as well as the changelogs: :::bash - $ ./pants clean-all publish.jar --no-dryrun --local=/tmp/m2 src/{java,scala}:: + $ ./pants clean-all publish.jar --no-publish-jar-dryrun --local=/tmp/m2 src/{java,scala}:: Note that this "dry-run" technique somewhat confusingly passes - `--no-dryrun` but only because the publish is local and to a + `--no-publish-jar-dryrun` but only because the publish is local and to a temporary dir (the argument to `--local`). You can also poke around in the `/tmp/m2` local maven repo if you're curious or want to double-check fine details of exactly what will be pushed. @@ -151,7 +151,7 @@ to use the following command, which will publish everything that's changed and only those things that have changed since the last publish: :::bash - $ ./pants publish.jar --no-dryrun src/{java,scala}:: + $ ./pants publish.jar --no-publish-jar-dryrun src/{java,scala}:: ## Promoting to Maven Central ##