mirror of https://github.com/acidanthera/audk.git
BaseTools/UPT: Fix a install issue
Fix a corner case issue of installing a module without any files which causes installing UNI file failure Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hess Chen <hesheng.chen@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
7989300df7
commit
9e730bd164
|
@ -962,7 +962,12 @@ def IsMatchArch(Arch1, Arch2):
|
|||
# Return the FileName with index +1 under the FilePath
|
||||
#
|
||||
def GetUniFileName(FilePath, FileName):
|
||||
Files = os.listdir(FilePath)
|
||||
Files = []
|
||||
try:
|
||||
Files = os.listdir(FilePath)
|
||||
except:
|
||||
pass
|
||||
|
||||
LargestIndex = -1
|
||||
for File in Files:
|
||||
if File.upper().startswith(FileName.upper()) and File.upper().endswith('.UNI'):
|
||||
|
|
Loading…
Reference in New Issue