diff options
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 |