From 0a4cf54d89683dff77317524c754bb668fd16f63 Mon Sep 17 00:00:00 2001 From: Adam Goska Date: Tue, 18 Jan 2022 14:03:07 -0500 Subject: /docs: update instructions for source checkout Updated documentation regarding source code checkout from the legacy gopath mode 'go get' to 'git clone'. Fixes #2828 --- docs/executing_syzkaller_programs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/executing_syzkaller_programs.md') diff --git a/docs/executing_syzkaller_programs.md b/docs/executing_syzkaller_programs.md index f06f01c86..a6911d270 100644 --- a/docs/executing_syzkaller_programs.md +++ b/docs/executing_syzkaller_programs.md @@ -13,7 +13,7 @@ export GOPATH=$HOME/gopath 2. Download syzkaller sources: ``` bash -GO111MODULE=off go get -u -d github.com/google/syzkaller/prog +git clone https://github.com/google/syzkaller ``` Note that your syzkaller revision must be the same as the one that generated the @@ -21,7 +21,7 @@ program you're trying to execute. 3. Build necessary syzkaller binaries: ``` bash -cd $GOPATH/src/github.com/google/syzkaller +cd syzkaller make ``` -- cgit mrf-deployment