mirror of
https://github.com/intel/llvm.git
synced 2026-02-06 23:31:50 +08:00
[analyzer][tests] Fix zip unpacking
Differential Revision: https://reviews.llvm.org/D83374
This commit is contained in:
@@ -601,7 +601,7 @@ class ProjectTester:
|
||||
stdout=build_log_file, shell=True)
|
||||
|
||||
def _unpack_zip(self, directory: str, build_log_file: IO):
|
||||
zip_files = list(glob.glob(os.path.join(directory, "/*.zip")))
|
||||
zip_files = list(glob.glob(directory + "/*.zip"))
|
||||
|
||||
if len(zip_files) == 0:
|
||||
raise ValueError(
|
||||
|
||||
Reference in New Issue
Block a user