diff options
| author | ruki <[email protected]> | 2021-12-15 22:41:18 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-12-15 22:41:18 +0800 |
| commit | 5f262b2602f29f1927e2a37dc81cd1c4c8dea722 (patch) | |
| tree | 197a8eb34b43f98b037fd63899ed6f317acbf164 | |
| parent | f5aa67b72f9959a25532d4d03f08b1749ded3e30 (diff) | |
fix tips
| -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 |
