Update new_project_guide.md

This commit is contained in:
Kostya Serebryany 2016-11-30 09:24:04 -08:00 committed by GitHub
parent 0fdd96f338
commit 079973ad78
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ It is very simple for most projects:
FROM ossfuzz/base-libfuzzer # base image with clang toolchain
MAINTAINER YOUR_EMAIL # maintainer for this file
RUN apt-get install -y ... # install required packages to build your project
RUN git checkout <git_url> <checkout_dir> # checkout all sources needed to build your project
RUN git clone <git_url> <checkout_dir> # checkout all sources needed to build your project
WORKDIR <checkout_dir> # current directory for build script
COPY build.sh fuzzer.cc $SRC/ # copy build script and other fuzzer files in src dir
```