diff options
| author | Arthur LAURENT <[email protected]> | 2024-02-14 13:30:51 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-02-14 13:30:51 +0100 |
| commit | 3cb45e3806f811916fabcdcb758890d72ca43f62 (patch) | |
| tree | 54fb9c573cda306f6100a0cc0cf2f97cbf37f6a5 | |
| parent | c601bfa8240467a0a7d5ba463dd321b2be1d1bdd (diff) | |
fix depend.lua diagnosis
| -rw-r--r-- | xmake/modules/core/project/depend.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/core/project/depend.lua b/xmake/modules/core/project/depend.lua index 80eb49d3b..22840f09e 100644 --- a/xmake/modules/core/project/depend.lua +++ b/xmake/modules/core/project/depend.lua @@ -159,7 +159,7 @@ function is_changed(dependinfo, opt) for idx, file in ipairs(files) do if file ~= optfiles[idx] then if _is_show_diagnosis_info() then - cprint("${color.warning}[check_build_deps]: file %s != %s at index %d", file, optfiles[subidx], idx) + cprint("${color.warning}[check_build_deps]: file %s != %s at index %d", file, optfiles[idx], idx) end return true end |
