From 0ef06196a61fd96c60759cf14c8e49ef8315dcb6 Mon Sep 17 00:00:00 2001 From: FondMemoryVVV Date: Wed, 28 Sep 2022 10:21:57 +0800 Subject: [PATCH] fix tar_files.py Signed-off-by: FondMemoryVVV --- commonlibrary/toolchain/libc-test/tar_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commonlibrary/toolchain/libc-test/tar_files.py b/commonlibrary/toolchain/libc-test/tar_files.py index 4d358caf4..e5b0e69ad 100755 --- a/commonlibrary/toolchain/libc-test/tar_files.py +++ b/commonlibrary/toolchain/libc-test/tar_files.py @@ -30,7 +30,7 @@ def copyFiles(sourceDir, targetDir): if not os.path.isfile(sourceF): if os.path.isdir(sourceF): copyFiles(sourceF, targetF) - continue + continue if os.path.exists(targetDir): copyFileCounts += 1 with open(targetF, "wb") as fp: -- GitLab