From 8b13da943497f75c5303700bff5aabdd85d939e0 Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Thu, 18 Mar 2021 16:53:58 -0700 Subject: [PATCH] fix: pass versions and default_versions to common_templates.node_library() (#993) --- synthtool/languages/node.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/synthtool/languages/node.py b/synthtool/languages/node.py index 0030f86c8..c5d905949 100644 --- a/synthtool/languages/node.py +++ b/synthtool/languages/node.py @@ -303,7 +303,9 @@ def owlbot_main(): shutil.rmtree(staging) common_templates = gcp.CommonTemplates() - templates = common_templates.node_library(source_location="build/src") + templates = common_templates.node_library( + source_location="build/src", versions=versions, default_version=default_version + ) s_copy(templates, excludes=[]) postprocess_gapic_library_hermetic()