From 3704ded25624a9653c0d539b907a12258b16ff77 Mon Sep 17 00:00:00 2001 From: Evan Bradley <11745660+evan-bradley@users.noreply.github.com> Date: Wed, 20 Nov 2024 14:56:33 -0700 Subject: [PATCH] Add the tmp directory to .gitignore (#6349) Running `make genjsonschema` creates a `tmp` directory that is not present in the .gitignore file, this makes sure contributors don't need to worry about having it in their repo directory. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 9eb2e347269..e8ce6d8cc7b 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,5 @@ instrumentation/google.golang.org/grpc/otelgrpc/example/server/server instrumentation/google.golang.org/grpc/otelgrpc/example/client/client instrgen/driver/testdata/**/*.go_pass_* + +tmp