From c8239a3a7373b64cd259389442872031f0237763 Mon Sep 17 00:00:00 2001 From: sam boyer Date: Wed, 15 Jun 2022 11:33:40 -0400 Subject: [PATCH] dev: Ignore generated go files in bra (#50889) --- .bra.toml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bra.toml b/.bra.toml index 0d6e19cfd01..7a8e77bf638 100644 --- a/.bra.toml +++ b/.bra.toml @@ -13,7 +13,7 @@ watch_dirs = [ "$WORKDIR/conf", ] watch_exts = [".go", ".ini", ".toml", ".template.html"] -ignore_files = ["wire_gen.go"] +ignore_files = ["wire_gen.go", "coremodel_gen.go", "registry_gen.go"] build_delay = 1500 cmds = [ ["make", "gen-go"], diff --git a/Makefile b/Makefile index 8ac2b916227..d6e0dd20efb 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ WIRE_TAGS = "oss" -include local/Makefile include .bingo/Variables.mk -.PHONY: all deps-go deps-js deps build-go build-server build-cli build-js build build-docker-full build-docker-full-ubuntu lint-go golangci-lint test-go test-js gen-ts test run run-frontend clean devenv devenv-down protobuf drone help +.PHONY: all deps-go deps-js deps build-go build-server build-cli build-js build build-docker-full build-docker-full-ubuntu lint-go golangci-lint test-go test-js gen-ts test run run-frontend clean devenv devenv-down protobuf drone help gen-go gen-cue GO = go GO_FILES ?= ./pkg/...