diff --git a/CHANGELOG.md b/CHANGELOG.md index a7aa947..6584340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file. This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log... ## [unreleased][unreleased] + - Fix bad missing tools warning (@suut) - Fix for FAST_READ command for nfc - mf0 tags - Rewrite of the dynamic and static locks logic for NTAG213, NTAG215 and NTAG216; we shouldn't take into account the block lock bits - Fixed an issue where we wouldn't be able to change CFG0 and CFG1 for NTAG213, NTAG215 and NTG216 once a password was added even if the cfg bit was reset. diff --git a/software/script/chameleon_cli_unit.py b/software/script/chameleon_cli_unit.py index 8755258..7932451 100644 --- a/software/script/chameleon_cli_unit.py +++ b/software/script/chameleon_cli_unit.py @@ -67,12 +67,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)