From 8f8b76d9df6d71e1efcae5dc0db9898685b3f39f Mon Sep 17 00:00:00 2001 From: shayne <79330+shayne@users.noreply.github.com> Date: Tue, 21 Jul 2020 06:33:01 +0000 Subject: [PATCH] Add GOOS=windows to support building from WSL devcontainer --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5630653..05ee7a2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ build: - go build -o wsl2host.exe ./cmd/wsl2host + GOOS=windows go build -o wsl2host.exe ./cmd/wsl2host .PHONY: build \ No newline at end of file