diff options
Diffstat (limited to 'xmake/scripts/action/_build.lua')
| -rw-r--r-- | xmake/scripts/action/_build.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/scripts/action/_build.lua b/xmake/scripts/action/_build.lua index 4b4b72687..7fc7ce4ed 100644 --- a/xmake/scripts/action/_build.lua +++ b/xmake/scripts/action/_build.lua @@ -61,10 +61,10 @@ function _build.done() -- rebuild it? if options.rebuild or config.get("__rebuild") then - clean.remove(target_name) + clean.remove(target_name, "build") -- update it? elseif options.update then - clean.remove(target_name, true) + clean.remove(target_name, "targets") end -- clear rebuild mark and save configure to file |
