aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar Laszlo Csomor <laszlocsomor@google.com>2018-05-29 05:15:42 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-05-29 05:17:03 -0700
commitab2431e1ef62d91230fdef49b2556bbe60c9de56 (patch)
tree1549f3b5912f9e05ba874228cb5cbac5f3ed3626 /site
parentc1c63e86e481e11377bf115915af446b166b2aed (diff)
docs, website: remove bad `sh` from command
The MarkDown engine we use for the Bazel website renders the following MarkDown block: foo: ```sh bar ``` to HTML as: foo: <code>sh bar</code> when in fact it should render it as: foo: <code class="sh">bar</code> This resulted in a bad command that the users couldn't run as it was on the website. Change-Id: If127ca83375b4d1f8c6403fdec16bbd79498cb5d Closes #5288. Change-Id: If127ca83375b4d1f8c6403fdec16bbd79498cb5d PiperOrigin-RevId: 198380352
Diffstat (limited to 'site')
-rw-r--r--site/docs/install-compile-source.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/site/docs/install-compile-source.md b/site/docs/install-compile-source.md
index b602f11c32..1edfca04cd 100644
--- a/site/docs/install-compile-source.md
+++ b/site/docs/install-compile-source.md
@@ -38,7 +38,8 @@ Ensure you have installed:
* **The required MSYS2 packages.** Run the following command in the MSYS2
shell:
- ```sh
+
+ ```
pacman -Syu zip unzip
```