From ea37132ce4c6e4952aa5e42be53db05cb75292d0 Mon Sep 17 00:00:00 2001 From: Patrick Meyer Date: Sat, 29 Feb 2020 05:28:38 +0100 Subject: [PATCH] lang: Fix wrong go-fuzz bin name I missed renaming this after moving the fuzz.go from the lang package to its own fuzz package. --- lang/fuzz/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/fuzz/Makefile b/lang/fuzz/Makefile index e9182afe..508aac7d 100644 --- a/lang/fuzz/Makefile +++ b/lang/fuzz/Makefile @@ -24,4 +24,4 @@ fuzz: mkdir -p corpus/ find ../.. -name \*.mcl -exec cp {} corpus/ \; go-fuzz-build - go-fuzz -bin=./lang-fuzz.zip -workdir=. + go-fuzz -bin=./fuzz-fuzz.zip -workdir=.