From 19c31beb6782b495fbfb4fa8b8ba19a8630bddf7 Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Mon, 11 Mar 2019 14:48:19 +0100 Subject: [PATCH] feat: wsl (windows) support --- core/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/Makefile b/core/Makefile index e68cf88cae..7cc7bb59fa 100644 --- a/core/Makefile +++ b/core/Makefile @@ -117,6 +117,9 @@ clean: .PHONY: generate_local generate_local: $(GENERATION_TARGETS) + @# FIXME: investigate why (sometimes?) there are "github.com" and "google.golang.org" directories generated at the root of core/ + rm -rf github.com google.golang.org + goimports -w `find . -name "*.pb.go" -or -name "*.gen.go" | grep -v /vendor/` gofmt -w -s `find . -name "*.pb.go" -or -name "*.gen.go" | grep -v /vendor/`