diff options
| author | ruki <[email protected]> | 2024-08-13 22:43:41 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-08-13 22:43:41 +0800 |
| commit | ff6027db26b9ea5534c78934e92bdb53f7e0284d (patch) | |
| tree | bd47af79c16b961dcd441a8f7b1cc7d1d9852547 /xmake/modules/cli/bisect.lua | |
| parent | 2af38a7f5bea256822a9a5b266d07d58a69e10ed (diff) | |
update help
Diffstat (limited to 'xmake/modules/cli/bisect.lua')
| -rw-r--r-- | xmake/modules/cli/bisect.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmake/modules/cli/bisect.lua b/xmake/modules/cli/bisect.lua index 3b8452f33..f96936d4f 100644 --- a/xmake/modules/cli/bisect.lua +++ b/xmake/modules/cli/bisect.lua @@ -28,14 +28,14 @@ local options = { {'b', "bad", "kv", nil, "Set the bad commit."}, {'c', "commands", "kv" , nil, "Run the multiple commands instead of the default build command.", "e.g.", - " $ xmake l cli.bisect -c 'xmake -rv' -b bad -g good", - " $ xmake l cli.bisect -c 'xmake -vD; xmake run hello' -b bad -g good"}, + " $ xmake l cli.bisect -c 'xmake -rv' -g good -b bad", + " $ xmake l cli.bisect -c 'xmake -vD; xmake run hello' -g good -b bad"}, {'s', "script" , "kv" , nil, "Run the given lua script file.", "e.g.", - " $ xmake l cli.bisect -s /tmp/test.lua -b bad -g good"}, + " $ xmake l cli.bisect -s /tmp/test.lua -g good -b bad"}, {'-', "arbitrary", "vs", nil, "Run an arbitrary command.", "e.g.", - " $ xmake l cli.bisect -b ddb86e4 -g 90846dd -- xmake -rv"} + " $ xmake l cli.bisect -g 90846dd -b ddb86e4 -- xmake -rv"} } -- run command |
