From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web11.33949.1589763066731388707 for ; Sun, 17 May 2020 17:51:06 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: erik.c.bjorge@intel.com) IronPort-SDR: legY5JDaxop1DdVY7hiAz84i5WZN7DdBuXjcSAEqkQljq+gusowi5sanhwgyIMqHJy/2U1vWBD g9RB1jMcHWLQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 May 2020 17:51:06 -0700 IronPort-SDR: NUAyigNiGbYM17GjWGvcrjzqhEnhl1nXuw276irgIhS0NdBgdwvJ4wKi6CAjvI+OPSvdBn60P+ CklNpYegiYwQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,405,1583222400"; d="scan'208";a="465590656" Received: from ecbjorge-mobl1.amr.corp.intel.com ([10.212.51.60]) by fmsmga006.fm.intel.com with ESMTP; 17 May 2020 17:51:05 -0700 From: "Bjorge, Erik C" To: devel@edk2.groups.io Cc: Ashley E Desimone , Nate DeSimone , Puja Pandya , Bret Barkelew , Prince Agyeman Subject: [edk2-staging/EdkRepo] [PATCH v1] EdkRepo: Fixed incorrect commit template warnings Date: Sun, 17 May 2020 17:50:59 -0700 Message-Id: <301519b07a5c6379ef3297078f0a2b5006e2f5d5.1589763017.git.erik.c.bjorge@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The repo name was being passed in instead of the path the repo. This caused all commit templates to be flagged as warnings. Cc: Ashley E Desimone Cc: Nate DeSimone Cc: Puja Pandya Cc: Bret Barkelew Cc: Prince Agyeman Cc: Erik Bjorge Signed-off-by: Erik Bjorge --- edkrepo/commands/sync_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edkrepo/commands/sync_command.py b/edkrepo/commands/sync_command.py index da99397..02e915d 100644 --- a/edkrepo/commands/sync_command.py +++ b/edkrepo/commands/sync_command.py @@ -200,7 +200,7 @@ class SyncCommand(EdkrepoCommand): # Perform submodule updates and url redirection maintain_submodules(repo_to_sync, repo) # Update commit message templates - update_repo_commit_template(workspace_path, repo, repo_to_sync, config, source_global_manifest_repo) + update_repo_commit_template(workspace_path, repo, repo_to_sync, config, global_manifest_directory) if sync_error: print(SYNC_ERROR) -- 2.21.0.windows.1