aboutsummaryrefslogtreecommitdiff
path: root/projects/aspell
diff options
context:
space:
mode:
authorMax Dymond <cmeister2@gmail.com>2019-08-01 23:34:06 +0100
committerAbhishek Arya <inferno@chromium.org>2019-08-01 15:34:06 -0700
commitfc4c02825eebbd2fdadb3b58d8f519ac3b547821 (patch)
treee923f12af3f64b7297db936916dc8a04526e7b04 /projects/aspell
parentfe35e99fe12bacc88ad93a815a556781e9236566 (diff)
downloadoss-fuzz-fc4c02825eebbd2fdadb3b58d8f519ac3b547821.tar.gz
Switch from aspell to aspell-fuzz (#2644)
Switch over to aspell-fuzz, which is a new repository to allow easier fuzzing fixes to be made.
Diffstat (limited to 'projects/aspell')
-rw-r--r--projects/aspell/Dockerfile6
-rwxr-xr-xprojects/aspell/build.sh6
2 files changed, 7 insertions, 5 deletions
diff --git a/projects/aspell/Dockerfile b/projects/aspell/Dockerfile
index 63f0d73af..a444a3665 100644
--- a/projects/aspell/Dockerfile
+++ b/projects/aspell/Dockerfile
@@ -17,8 +17,8 @@
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER cmeister2@gmail.com
-# RUN git clone --depth 1 https://github.com/gnuaspell/aspell.git /src/aspell
-RUN git clone --depth 1 -b cmeister2/ossfuzz https://github.com/cmeister2/aspell.git /src/aspell
+RUN git clone --depth 1 https://github.com/gnuaspell/aspell.git $SRC/aspell
+RUN git clone --depth 1 -b master https://github.com/gnuaspell/aspell-fuzz.git $SRC/aspell-fuzz
-WORKDIR $SRC/aspell
+WORKDIR $SRC/aspell-fuzz
COPY build.sh $SRC/
diff --git a/projects/aspell/build.sh b/projects/aspell/build.sh
index 77d3f65da..e77ebd3e6 100755
--- a/projects/aspell/build.sh
+++ b/projects/aspell/build.sh
@@ -15,5 +15,7 @@
#
################################################################################
-# Run the OSS-Fuzz script in the project.
-./ossfuzz/ossfuzz.sh
+# Run the OSS-Fuzz script in the fuzzer project.
+pushd $SRC/aspell-fuzz
+./ossfuzz.sh
+popd