summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork8s-merge-robot <k8s.production.user@gmail.com>2015-11-07 10:29:31 -0800
committerk8s-merge-robot <k8s.production.user@gmail.com>2015-11-07 10:29:31 -0800
commit2d5ff32da38a2f7f9f531d79d8f42ef3f56e6a49 (patch)
treea653a0b301060c45dd36a088ea69f3f7b1a745fc
parent889fa90febe3e133f0bbfda871e3a7ff45e25d02 (diff)
parent5978c29f80989ee1e10599cfd1adca012bc89f67 (diff)
Merge pull request #16930 from ihmccreery/release-wording-fixes
Auto commit by PR queue bot
-rw-r--r--releasing.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/releasing.md b/releasing.md
index aef0e168..a41568e0 100644
--- a/releasing.md
+++ b/releasing.md
@@ -145,7 +145,7 @@ export VER="vX.Y.0-alpha.W"
then, run
```console
-release/cut-official-release.sh "${VER}" "${GITHASH}"
+./release/cut-official-release.sh "${VER}" "${GITHASH}"
```
This will do a dry run of:
@@ -157,7 +157,7 @@ This will do a dry run of:
If you're satisfied with the result, run
```console
-release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run
+./release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run
```
and follow the instructions.
@@ -173,7 +173,7 @@ export VER="vX.Y.Z-beta.W"
then, run
```console
-release/cut-official-release.sh "${VER}" "${GITHASH}"
+./release/cut-official-release.sh "${VER}" "${GITHASH}"
```
This will do a dry run of:
@@ -186,7 +186,7 @@ This will do a dry run of:
If you're satisfied with the result, run
```console
-release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run
+./release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run
```
and follow the instructions.
@@ -202,7 +202,7 @@ export VER="vX.Y.Z"
then, run
```console
-release/cut-official-release.sh "${VER}" "${GITHASH}"
+./release/cut-official-release.sh "${VER}" "${GITHASH}"
```
This will do a dry run of:
@@ -218,7 +218,7 @@ This will do a dry run of:
If you're satisfied with the result, run
```console
-release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run
+./release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run
```
and follow the instructions.
@@ -238,7 +238,7 @@ export VER="vX.Y"
then, run
```console
-release/cut-official-release.sh "${VER}" "${GITHASH}"
+./release/cut-official-release.sh "${VER}" "${GITHASH}"
```
This will do a dry run of:
@@ -253,7 +253,7 @@ This will do a dry run of:
If you're satisfied with the result, run
```console
-release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run
+./release/cut-official-release.sh "${VER}" "${GITHASH}" --no-dry-run
```
and follow the instructions.