Fix bad missing tools warning

This commit is contained in:
suut
2026-02-06 21:39:19 +01:00
parent 23181d84f1
commit 688bb452aa
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -66,12 +66,11 @@ def load_dic_file(import_dic, keys):
def check_tools():
bin_dir = Path.cwd() / "bin"
missing_tools = []
for tool in ("staticnested", "nested", "darkside", "mfkey32v2", "staticnested_1nt",
"staticnested_2x1nt_rf08s", "staticnested_2x1nt_rf08s_1key"):
if any(bin_dir.glob(f"{tool}*")):
if any(default_cwd.glob(f"{tool}*")):
continue
else:
missing_tools.append(tool)