From 78cb47fc9ed917681f62ad4b4e8389f3093af108 Mon Sep 17 00:00:00 2001 From: Alice Fage Date: Tue, 15 Aug 2023 09:12:19 +1200 Subject: [PATCH] fix: email typo --- src/commands/stac-github-import/stac.github.import.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/stac-github-import/stac.github.import.ts b/src/commands/stac-github-import/stac.github.import.ts index 9813694b..7263b661 100644 --- a/src/commands/stac-github-import/stac.github.import.ts +++ b/src/commands/stac-github-import/stac.github.import.ts @@ -46,7 +46,9 @@ export const commandStacGithubImport = command({ const linzRepoName = `linz/${args.repoName}`; const gitName = `${args.repoName}[bot]`; - const gitEmail = `${args.repoName}, "@linz.govt.nz")`; + const gitEmail = `${args.repoName}@linz.govt.nz`; + + console.log(linzRepoName, gitEmail, gitName) const sourceCollection = new URL('collection.json', args.source); const targetCollection = new URL('collection.json', args.target);