diff options
author | Kevin Krakauer <krakauer@google.com> | 2019-04-03 11:09:07 -0700 |
---|---|---|
committer | Ian Lewis <ianlewis@google.com> | 2019-04-04 08:51:39 +0900 |
commit | 51bfff9f74e3e25a05d070bae19b89aef2187643 (patch) | |
tree | a5593ae9dea5efd8d3bb9a38bfbe171fea932145 /content/docs/includes | |
parent | 6eb84a20ba51d9725f79a9b2b47e0de1af450667 (diff) |
Remove unnecessary curly braces around bash commands.
Diffstat (limited to 'content/docs/includes')
-rw-r--r-- | content/docs/includes/install_gvisor.md | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/content/docs/includes/install_gvisor.md b/content/docs/includes/install_gvisor.md index b8257e2cc..800f915dc 100644 --- a/content/docs/includes/install_gvisor.md +++ b/content/docs/includes/install_gvisor.md @@ -16,13 +16,11 @@ user `nobody` to avoid unnecessary privileges. The `/usr/local/bin` directory is a good place to put the `runsc` binary. ```bash -{ - wget https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc - wget https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc.sha512 - sha512sum -c runsc.sha512 - chmod a+x runsc - sudo mv runsc /usr/local/bin -} +wget https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc +wget https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc.sha512 +sha512sum -c runsc.sha512 +chmod a+x runsc +sudo mv runsc /usr/local/bin ``` [latest-nightly]: https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc |