From 50f523d769a891a551db56c3280fd65270090a9d Mon Sep 17 00:00:00 2001 From: Garret Kelly Date: Sat, 17 Apr 2021 23:47:04 -0400 Subject: docs/contributing.md: fix syz-env invocation Paths like SOURCEDIR must be absolute as they're being used as volume paths given to Docker and will be interpreted as Docker volume names if not absolute paths. --- docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/contributing.md b/docs/contributing.md index 158086eba..8e9189183 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -114,7 +114,7 @@ Then it can be used to wrap almost any make invocation as: ``` syz-env make format syz-env make presubmit -syz-env make extract SOURCEDIR=~/linux +syz-env make extract SOURCEDIR=$(readlink -f ~/linux) ``` Or other commands/scripts, e.g.: ``` -- cgit mrf-deployment