From: "gaoliming" <gaoliming@byosoft.com.cn>
To: "'Kun Qin'" <kuqin12@gmail.com>, <devel@edk2.groups.io>
Cc: "'Sean Brogan'" <sean.brogan@microsoft.com>,
"'Bret Barkelew'" <Bret.Barkelew@microsoft.com>,
"'Michael D Kinney'" <michael.d.kinney@intel.com>,
"'Bret Barkelew'" <bret.barkelew@microsoft.com>
Subject: 回复: [PATCH v2 1/1] Pytool: SpellCheck: Defer path expansion in cspell parameters
Date: Thu, 17 Jun 2021 09:45:51 +0800 [thread overview]
Message-ID: <004a01d7631a$8107f1c0$8317d540$@byosoft.com.cn> (raw)
In-Reply-To: <20210615165357.1993-2-kuqin12@gmail.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> -----邮件原件-----
> 发件人: Kun Qin <kuqin12@gmail.com>
> 发送时间: 2021年6月16日 0:54
> 收件人: devel@edk2.groups.io
> 抄送: Sean Brogan <sean.brogan@microsoft.com>; Bret Barkelew
> <Bret.Barkelew@microsoft.com>; Michael D Kinney
> <michael.d.kinney@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>;
> Bret Barkelew <bret.barkelew@microsoft.com>
> 主题: [PATCH v2 1/1] Pytool: SpellCheck: Defer path expansion in cspell
> parameters
>
> From: Sean Brogan <sean.brogan@microsoft.com>
>
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3454
>
> On Linux the shell expands the wildcard paths and causes multiple files
> to be missed. This change adds additional quotes to defer expansion in
> order to bring parity in cspell result.
>
> Cc: Sean Brogan <sean.brogan@microsoft.com>
> Cc: Bret Barkelew <Bret.Barkelew@microsoft.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
>
> Signed-off-by: Sean Brogan <sean.brogan@microsoft.com>
> Signed-off-by: Kun Qin <kuqin12@gmail.com>
> Reviewed-by: Sean Brogan <sean.brogan@microsoft.com>
> Reviewed-by: Bret Barkelew <bret.barkelew@microsoft.com>
> ---
>
> Notes:
> v2:
> - Added reviewed-by tags [Bret]
> - Added reviewed-by tag [Sean]
> - Added signed-off-by tag from Kun [Sean]
>
> .pytool/Plugin/SpellCheck/SpellCheck.py | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/.pytool/Plugin/SpellCheck/SpellCheck.py
> b/.pytool/Plugin/SpellCheck/SpellCheck.py
> index 9ad57632a6e8..05c471d91ba1 100644
> --- a/.pytool/Plugin/SpellCheck/SpellCheck.py
> +++ b/.pytool/Plugin/SpellCheck/SpellCheck.py
> @@ -134,7 +134,8 @@ class SpellCheck(ICiBuildPlugin):
> #
> relpath = os.path.relpath(abs_pkg_path)
> cpsell_paths = " ".join(
> - [f"{relpath}/**/{x}" for x in
> package_relative_paths_to_spell_check])
> + # Double quote each path to defer expansion to cspell
> parameters
> + [f'"{relpath}/**/{x}"' for x in
> package_relative_paths_to_spell_check])
>
> # Make the config file
> config_file_path = os.path.join(
> --
> 2.31.1.windows.1
prev parent reply other threads:[~2021-06-17 1:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-15 16:53 [PATCH v2 0/1] SpellCheck plugin inspects fewer files when run on Linux Kun Qin
2021-06-15 16:53 ` [PATCH v2 1/1] Pytool: SpellCheck: Defer path expansion in cspell parameters Kun Qin
2021-06-17 1:45 ` gaoliming [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='004a01d7631a$8107f1c0$8317d540$@byosoft.com.cn' \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox