We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23bec85 commit eb9820aCopy full SHA for eb9820a
1 file changed
client/tool/flow.py
@@ -59,7 +59,8 @@ def analyze(self, params):
59
SubProcController(["flow", "stop"], cwd=source_dir).wait()
60
61
# 删除flow生成的配置文件,并将客户代码库自身的配置文件拷贝会代码库中,恢复现场
62
- os.remove(config_file)
+ if os.path.exists(config_file):
63
+ os.remove(config_file)
64
if os.path.exists(user_config_file):
65
copyfile(user_config_file, config_file)
66
0 commit comments