From 68875322e6fd46e7f6491969d3bc9816486efeec Mon Sep 17 00:00:00 2001 From: Tom Duffield Date: Wed, 22 Sep 2021 12:57:50 -0500 Subject: Escape special characters in announce-release We need to make sure these commands don't actually get run when the script executes. Signed-off-by: Tom Duffield --- .expeditor/announce-release.sh | 14 +++++++------- 1 file 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 ) -- cgit v1.2.1