From 380d03257f3fe14d27f06e7fb34662ebcac92352 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Thu, 27 Feb 2020 17:34:03 -0500 Subject: [PATCH] misc, lang: Small fixups Change some minor style issues. --- lang/fuzz/Makefile | 4 ++-- misc/make-deps.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/fuzz/Makefile b/lang/fuzz/Makefile index a51cbb8d..e9182afe 100644 --- a/lang/fuzz/Makefile +++ b/lang/fuzz/Makefile @@ -21,7 +21,7 @@ SHELL = /usr/bin/env bash all: fuzz fuzz: - mkdir -p corpus - find ../.. -name \*.mcl -exec cp {} corpus \; + mkdir -p corpus/ + find ../.. -name \*.mcl -exec cp {} corpus/ \; go-fuzz-build go-fuzz -bin=./lang-fuzz.zip -workdir=. diff --git a/misc/make-deps.sh b/misc/make-deps.sh index cf557da5..b2b7a878 100755 --- a/misc/make-deps.sh +++ b/misc/make-deps.sh @@ -128,7 +128,7 @@ go get golang.org/x/tools/cmd/stringer # for automatic stringer-ing go get golang.org/x/lint/golint # for `golint`-ing go get golang.org/x/tools/cmd/goimports # for fmt go get github.com/tmthrgd/go-bindata/go-bindata # for compiling in non golang files -go get golang.org/dvyukov/go-fuzz # for fuzzing the mcl lang bits +go get golang.org/dvyukov/go-fuzz # for fuzzing the mcl lang bits if env | grep -q -e '^TRAVIS=true$' -e '^JENKINS_URL=' -e '^BUILD_TAG=jenkins'; then go get -u gopkg.in/alecthomas/gometalinter.v1 && mv "$(dirname $(command -v gometalinter.v1))/gometalinter.v1" "$(dirname $(command -v gometalinter.v1))/gometalinter" && gometalinter --install # bonus fi