From 3920ad4935cec19e6b9bba5ba3f56497c9d290f6 Mon Sep 17 00:00:00 2001 From: Jon Skeet Date: Tue, 17 Dec 2024 11:47:17 +0000 Subject: [PATCH] fix: Expect CommonResourcesConfig.json in generator input, not googleapis --- tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs b/tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs index 01d6ebd245f3..f4211eab1f93 100644 --- a/tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs +++ b/tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs @@ -505,7 +505,7 @@ private void GenerateUnconfigured(string arg) yield return ("transport", "grpc"); yield return ("rest-numeric-enums", "True"); yield return ("service-config", configFiles[0]); - yield return ("common-resources-config", Path.Combine(_rootLayout.Googleapis, "CommonResourcesConfig.json")); + yield return ("common-resources-config", Path.Combine(_rootLayout.GeneratorInput, "CommonResourcesConfig.json")); } }