1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-11 22:08:20 +08:00

Fix: Double check the case of process_name

This commit is contained in:
LmeSzinc
2022-01-15 17:53:01 +08:00
parent aba18b8afe
commit a66718d768

View File

@@ -315,7 +315,7 @@ class AlasManager(DeployConfig):
continue
for folder in self.alas_folder:
if folder in executable_path and process_id != self.self_pid:
if folder in executable_path and process_name == name and process_id != self.self_pid:
yield executable_path, process_name, process_id
def kill_by_name(self, name):