summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-09-22 11:01:39 -0700
committerGitHub <noreply@github.com>2021-09-22 11:01:39 -0700
commit65ff8d0d3c2764e4d508ff04d9a61f72dbe1210f (patch)
tree7d7c1b4341751286758d4ef858ad619ff652906c
parent9aa2e3afc21285d3f81a0f089a27c67641936abc (diff)
parent68875322e6fd46e7f6491969d3bc9816486efeec (diff)
downloadchef-65ff8d0d3c2764e4d508ff04d9a61f72dbe1210f.tar.gz
Merge pull request #12081 from chef/tduffield/fix-announce-script
Escape special characters in announce-release
-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
)