summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@gmail.com>2021-10-05 17:32:15 -0700
committerAndrei Vagin <avagin@gmail.com>2021-10-05 17:32:15 -0700
commitd4386896d64bb594f5b9f834a5d25e5bad45f3a6 (patch)
treef898329137aa709584d812052aa8fce0307bf32c /README.md
parent84063e88c382748d6990eb24834c0553d530d517 (diff)
Fix "Installing from source" instructions
Fixes #6387
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index aa8b8c068..3d380350f 100644
--- a/README.md
+++ b/README.md
@@ -61,8 +61,9 @@ Make sure the following dependencies are installed:
Build and install the `runsc` binary:
```sh
-make runsc
-sudo cp ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc /usr/local/bin
+mkdir -p bin
+make copy TARGETS=runsc DESTINATION=bin/
+sudo cp ./bin/runsc /usr/local/bin
```
### Testing