From 36fb960e5f6e2a26e6b5a28d05394d5b428a62ad Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Thu, 18 Sep 2025 08:01:07 +0200 Subject: [PATCH] change(tools): Fix pre-commit checks for tools.py --- tools/idf_py_actions/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_py_actions/tools.py b/tools/idf_py_actions/tools.py index d9694cb317..de6c236dd3 100644 --- a/tools/idf_py_actions/tools.py +++ b/tools/idf_py_actions/tools.py @@ -646,7 +646,7 @@ def ensure_build_directory( cache_path = os.path.join(build_dir, 'CMakeCache.txt') cache = _parse_cmakecache(cache_path) if os.path.exists(cache_path) else {} - args.define_cache_entry.append(f'CCACHE_ENABLE={args.ccache:d}') + args.define_cache_entry.append(f'CCACHE_ENABLE={args.ccache}') cache_cmdl = _parse_cmdl_cmakecache(args.define_cache_entry)