From 05b511807d87b7dc9f20b7425bd7866982167473 Mon Sep 17 00:00:00 2001 From: Steve Kriss Date: Wed, 25 May 2022 22:53:00 +0000 Subject: [PATCH] move build output to bin/ Signed-off-by: Steve Kriss --- .gitignore | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2118cbc2759..5ed1a0c03de 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ **/.DS_Store -/envoy-gateway +bin/ diff --git a/Makefile b/Makefile index 92d914cdc25..aa7019df359 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: build build: - @go build github.com/envoyproxy/gateway/cmd/envoy-gateway + @go build -o ./bin/ github.com/envoyproxy/gateway/cmd/envoy-gateway .PHONY: test test: