From d8cf141384a87928c79e8e92c2c9fdf62d6d7a00 Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Tue, 10 Oct 2023 09:02:20 -0700 Subject: [PATCH] move generated_config to config dir Signed-off-by: Alex Boten --- Makefile | 2 +- config/{pkg/v0.1.0 => }/generated_config.go | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename config/{pkg/v0.1.0 => }/generated_config.go (100%) diff --git a/Makefile b/Makefile index 565a4178d5c..db76637aed1 100644 --- a/Makefile +++ b/Makefile @@ -297,7 +297,7 @@ OPENTELEMETRY_CONFIGURATION_JSONSCHEMA_VERSION=v0.1.0 genjsonschema-cleanup: rm -Rf ${OPENTELEMETRY_CONFIGURATION_JSONSCHEMA_SRC_DIR} -GENERATED_CONFIG=./config/pkg/${OPENTELEMETRY_CONFIGURATION_JSONSCHEMA_VERSION}/generated_config.go +GENERATED_CONFIG=./config/generated_config.go # Generate structs for configuration from opentelemetry-configuration schema genjsonschema: genjsonschema-cleanup $(GOJSONSCHEMA) diff --git a/config/pkg/v0.1.0/generated_config.go b/config/generated_config.go similarity index 100% rename from config/pkg/v0.1.0/generated_config.go rename to config/generated_config.go