diff options
author | Matthew Carlson <matthewfcarlson@gmail.com> | 2021-02-09 08:50:33 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-02-09 03:56:37 +0000 |
commit | 1534b6228b0932d745bf6ec9fd4cb010800b92f2 (patch) | |
tree | 72fff77178550a5f65df459f1b639a09efa499f9 /BaseTools/Scripts | |
parent | ecc267fec55aecd9e36bf80caba732d5121a3428 (diff) | |
download | edk2-1534b6228b0932d745bf6ec9fd4cb010800b92f2.tar.gz edk2-1534b6228b0932d745bf6ec9fd4cb010800b92f2.tar.bz2 edk2-1534b6228b0932d745bf6ec9fd4cb010800b92f2.zip |
BaseTools: Use pip module if available, CI uses it by default
Use the new edk2-basetools pip module.
Includes a helpful message in setup to let users know which has been
selected.
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Yuwei Chen <yuwei.chen@intel.com>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
Reviewed-by: Yuwei <Chen<yuwei.chen@intel.com>
Signed-off-by: Matthew Carlson <matthewfcarlson@gmail.com>
Diffstat (limited to 'BaseTools/Scripts')
-rwxr-xr-x | BaseTools/Scripts/PatchCheck.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BaseTools/Scripts/PatchCheck.py b/BaseTools/Scripts/PatchCheck.py index 68c984ed0e..80754e763c 100755 --- a/BaseTools/Scripts/PatchCheck.py +++ b/BaseTools/Scripts/PatchCheck.py @@ -359,6 +359,7 @@ class GitDiffCheck: self.force_notabs = True
if self.filename.endswith('.sh') or \
self.filename.startswith('BaseTools/BinWrappers/PosixLike/') or \
+ self.filename.startswith('BaseTools/BinPipWrappers/PosixLike/') or \
self.filename.startswith('BaseTools/Bin/CYGWIN_NT-5.1-i686/') or \
self.filename == 'BaseTools/BuildEnv':
#
|