From d0accc7a6430bea4c3b8b28dc1df3f7159122941 Mon Sep 17 00:00:00 2001 From: Cory Miller Date: Mon, 14 Nov 2022 12:37:51 -0500 Subject: [PATCH] formatting --- src/git-auth-helper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/git-auth-helper.ts b/src/git-auth-helper.ts index ffc5c5e..8d31f20 100644 --- a/src/git-auth-helper.ts +++ b/src/git-auth-helper.ts @@ -157,8 +157,8 @@ class GitAuthHelper { // by process creation audit events, which are commonly logged. For more information, // refer to https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/manage/component-updates/command-line-process-auditing const output = await this.git.submoduleForeach( - // wrap the pipeline in quotes to make sure it's handled properly by submoduleForeach, rather than just the first part of the pipeline - `"git config --local '${this.tokenConfigKey}' '${this.tokenPlaceholderConfigValue}' && git config --local --show-origin --name-only --get-regexp remote.origin.url"`, + // wrap the pipeline in quotes to make sure it's handled properly by submoduleForeach, rather than just the first part of the pipeline + `"git config --local '${this.tokenConfigKey}' '${this.tokenPlaceholderConfigValue}' && git config --local --show-origin --name-only --get-regexp remote.origin.url"`, this.settings.nestedSubmodules )