summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Duffield <github@tomduffield.com>2021-09-22 12:59:05 -0500
committerTom Duffield <github@tomduffield.com>2021-09-22 12:59:05 -0500
commit4368b0f2ef4339e7db61dd05a79eef82856895d8 (patch)
tree7e4bc2b2d0459269f3fcc2c65eeea2e24a697216
parentfe1e2f837cf2eb5a45829a4cf15b1966979531d7 (diff)
downloadchef-4368b0f2ef4339e7db61dd05a79eef82856895d8.tar.gz
Fix announce script
Don't run commands when evaluating the script. Signed-off-by: Tom Duffield <github@tomduffield.com>
-rwxr-xr-x.expeditor/announce-release.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/.expeditor/announce-release.sh b/.expeditor/announce-release.sh
index 58d1b1e463..35119f5b83 100755
--- a/.expeditor/announce-release.sh
+++ b/.expeditor/announce-release.sh
@@ -14,27 +14,27 @@ $(cat release-notes.md)
---
## Get the Build
-As always, you can download binaries directly from [downloads.chef.io](https://downloads.chef.io/products/infra?v=${EXPEDITOR_VERSION}) or by using the `mixlib-install` command-line utility:
+As always, you can download binaries directly from [downloads.chef.io](https://downloads.chef.io/products/infra?v=${EXPEDITOR_VERSION}) or by using the \`mixlib-install\` command-line utility:
-```
+\`\`\`
$ mixlib-install download chef -v ${EXPEDITOR_VERSION}
-```
+\`\`\`
Alternatively, you can install Chef Infra Client using one of the following command options:
-```
+\`\`\`
# In Shell
$ curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P chef -v ${EXPEDITOR_VERSION}
# In Windows Powershell
. { iwr -useb https://omnitruck.chef.io/install.ps1 } | iex; install -project chef -version ${EXPEDITOR_VERSION}
-```
+\`\`\`
If you want to give this version a spin in Test Kitchen, create or add the following to your `kitchen.yml` file:
-```
+\`\`\`
provisioner:
product_name: chef
product_version: ${EXPEDITOR_VERSION}
-```
+\`\`\`
EOH
)