diff options
author | Jakob Dietrich <jakibaki@users.noreply.github.com> | 2019-08-26 09:27:07 +0200 |
---|---|---|
committer | Ian Lewis <ianlewis@google.com> | 2019-08-26 14:26:44 -0700 |
commit | 5c82fbe1aac83ce76c628c6ee382c77df8d331ea (patch) | |
tree | 4d6b68573d80019448d13d16fd185a22235d2f9f | |
parent | 76a12063a6566a2e1c8e2c3589ebf90e91da3dc7 (diff) |
Add missing sudo in setup-command
-rw-r--r-- | content/docs/includes/install_gvisor.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/docs/includes/install_gvisor.md b/content/docs/includes/install_gvisor.md index cfc74768d..64d25358d 100644 --- a/content/docs/includes/install_gvisor.md +++ b/content/docs/includes/install_gvisor.md @@ -21,7 +21,7 @@ a good place to put the `runsc` binary. sha512sum -c runsc.sha512 sudo mv runsc /usr/local/bin sudo chown root:root /usr/local/bin/runsc - chmod 0755 /usr/local/bin/runsc + sudo chmod 0755 /usr/local/bin/runsc ) ``` |