diff options
| author | ruki <[email protected]> | 2019-05-25 22:03:58 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-05-25 22:03:58 +0800 |
| commit | 2cae1ff2dc7f1756a8a831cfde5c6610342f978f (patch) | |
| tree | 397a3b92fd0405dff31e2cb0ea9cd1d02a5c32fe /xmake/core/base/task.lua | |
| parent | e2b3965574e574fafbd76d89ee6f5d18ca1265cd (diff) | |
add confirm option
Diffstat (limited to 'xmake/core/base/task.lua')
| -rw-r--r-- | xmake/core/base/task.lua | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/xmake/core/base/task.lua b/xmake/core/base/task.lua index ea1050251..072219fc9 100644 --- a/xmake/core/base/task.lua +++ b/xmake/core/base/task.lua @@ -128,15 +128,18 @@ function task._translate_menu(menu) -- add common options table.insert(options, 1, {'q', "quiet", "k", nil, "Quiet operation." }) table.insert(options, 2, {'y', "yes", "k", nil, "Input yes by default if need user confirm." }) - table.insert(options, 3, {'v', "verbose", "k", nil, "Print lots of verbose information for users." }) - table.insert(options, 4, {nil, "root", "k", nil, "Allow to run xmake as root." }) - table.insert(options, 5, {'D', "diagnosis", "k", nil, "Print lots of diagnosis information (backtrace, check info ..) only for developers." + table.insert(options, 3, {nil, "confirm", "kv", nil, "Input the given result if need user confirm.", + " - y|yes", + " - n|no", + " - d|def"}) + table.insert(options, 4, {'v', "verbose", "k", nil, "Print lots of verbose information for users." }) + table.insert(options, 5, {nil, "root", "k", nil, "Allow to run xmake as root." }) + table.insert(options, 6, {'D', "diagnosis", "k", nil, "Print lots of diagnosis information (backtrace, check info ..) only for developers." , "And we can append -v to get more whole information." , " e.g. $ xmake -v -D"}) - table.insert(options, 6, {nil, "profile", "k", nil, "Print performance data only for developers." }) - table.insert(options, 7, {nil, "version", "k", nil, "Print the version number and exit." }) - table.insert(options, 8, {'h', "help", "k", nil, "Print this help message and exit." }) - table.insert(options, 9, {nil, "backtrace", "k", nil, "Please uses -D or --diagnosis instead of it. (deprecated)"}) + table.insert(options, 7, {nil, "profile", "k", nil, "Print performance data only for developers." }) + table.insert(options, 8, {nil, "version", "k", nil, "Print the version number and exit." }) + table.insert(options, 9, {'h', "help", "k", nil, "Print this help message and exit." }) table.insert(options, 10, {}) table.insert(options, 11, {'F', "file", "kv", nil, "Read a given xmake.lua file." }) table.insert(options, 12, {'P', "project", "kv", nil, "Change to the given project directory." |
