diff options
Diffstat (limited to '.expeditor/announce-release.sh')
-rwxr-xr-x | .expeditor/announce-release.sh | 14 |
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 ) |