From d69c92070e83ffb74550bd37f1c939b428c74ee1 Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Wed, 27 Mar 2019 10:43:57 -0700 Subject: [PATCH] fix: README should not be generated (#1657) --- synth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synth.py b/synth.py index 091e63d5ab..f36a3d5c3b 100644 --- a/synth.py +++ b/synth.py @@ -24,7 +24,7 @@ logging.basicConfig(level=logging.DEBUG) common_templates = gcp.CommonTemplates() templates = common_templates.node_library() -s.copy(templates, excludes=[".github/CONTRIBUTING.md"]) +s.copy(templates, excludes=[".github/CONTRIBUTING.md", "README.md"]) # repository_url = "https://github.com/googleapis/google-api-nodejs-client.git" # log.debug(f"Cloning {repository_url}.")