diff options
| author | Garret Kelly <garret.kelly@robinhood.com> | 2021-04-17 23:47:04 -0400 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-04-19 09:07:08 +0200 |
| commit | 50f523d769a891a551db56c3280fd65270090a9d (patch) | |
| tree | ea9dc894b35e1e2cf787ea37275314e2070249e3 /docs | |
| parent | 7e2b734bac96c22086fedd1b18135da06d5e4054 (diff) | |
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.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/contributing.md | 2 |
1 files changed, 1 insertions, 1 deletions
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.: ``` |
