未验证 提交 211b62ae 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #4598 from thread-liu/master

[update] ignore dir path check.
......@@ -54,7 +54,9 @@ class CheckOut:
except Exception as e:
logging.error(e)
continue
logging.debug("ignore file path: {}".format(ignore_file_path))
logging.debug("file_ignore: {}".format(file_ignore))
logging.debug("dir_ignore: {}".format(dir_ignore))
try:
# judge file_path in the ignore file.
for file in file_ignore:
......@@ -68,7 +70,7 @@ class CheckOut:
for _dir in dir_ignore:
if _dir is not None:
dir_real_path = os.path.join(dir_name, _dir)
if dir_real_path == file_dir_path:
if file_dir_path.startswith(dir_real_path):
logging.info("ignore dir path: {}".format(dir_real_path))
return 0
except Exception as e:
......@@ -139,7 +141,7 @@ class FormatCheck:
def check(self):
logging.info("Start to check files format.")
if len(self.file_list) == 0:
logging.warning("There are no files to check license.")
logging.warning("There are no files to check format.")
return True
encoding_check_result = True
format_check_result = True
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册