summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-09-22 11:01:46 -0700
committerGitHub <noreply@github.com>2021-09-22 11:01:46 -0700
commit9370a9efbd81f9e75b37aa1ab545eb519b8b2447 (patch)
tree7e4bc2b2d0459269f3fcc2c65eeea2e24a697216
parentfe1e2f837cf2eb5a45829a4cf15b1966979531d7 (diff)
parent4368b0f2ef4339e7db61dd05a79eef82856895d8 (diff)
downloadchef-9370a9efbd81f9e75b37aa1ab545eb519b8b2447.tar.gz
Merge pull request #12082 from chef/tduffield/fix-announce-script-16
Fix announce script
-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
)