diff options
| -rw-r--r-- | xmake/actions/build/xmake.lua | 2 | ||||
| -rw-r--r-- | xmake/actions/clean/main.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/actions/build/xmake.lua b/xmake/actions/build/xmake.lua index 63677d594..a1ed27952 100644 --- a/xmake/actions/build/xmake.lua +++ b/xmake/actions/build/xmake.lua @@ -44,7 +44,7 @@ task("build") {'b', "build", "k", nil , "Build target. This is default building mode and optional." } , {'r', "rebuild", "k", nil , "Rebuild the target." } , {'a', "all", "k", nil , "Build all targets." } - , {'g', "group", "kv", nil , "Run all targets of the given group. It support path pattern matching.", + , {'g', "group", "kv", nil , "Build all targets of the given group. It support path pattern matching.", "e.g.", " xmake -g test", " xmake -g test_*", diff --git a/xmake/actions/clean/main.lua b/xmake/actions/clean/main.lua index e9e574545..c508d0566 100644 --- a/xmake/actions/clean/main.lua +++ b/xmake/actions/clean/main.lua @@ -162,7 +162,7 @@ function main() -- enter project directory local oldir = os.cd(project.directory()) - -- clean the current target + -- clean target _clean(targetname) -- unlock the whole project |
