diff options
| author | ruki <[email protected]> | 2017-02-17 20:50:39 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-02-17 20:50:39 +0800 |
| commit | a388453e3d7a91cf2f17a1137197767521803071 (patch) | |
| tree | 06b502b5fd365a4c6b1aa448982a56de6cbab602 /xmake/core/project/task.lua | |
| parent | cc7f4047231bbed2b6768ab38d8c836db27b4d40 (diff) | |
remove some trace
Diffstat (limited to 'xmake/core/project/task.lua')
| -rw-r--r-- | xmake/core/project/task.lua | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/xmake/core/project/task.lua b/xmake/core/project/task.lua index 7c7787f02..ed0150694 100644 --- a/xmake/core/project/task.lua +++ b/xmake/core/project/task.lua @@ -132,19 +132,20 @@ function task._translate_menu(menu) end -- add common options - table.insert(options, 1, {'v', "verbose", "k", nil, "Print lots of verbose information." }) - table.insert(options, 2, {nil, "backtrace", "k", nil, "Print backtrace information for debugging." }) - table.insert(options, 3, {nil, "profile", "k", nil, "Print performance data for debugging." }) - table.insert(options, 4, {nil, "version", "k", nil, "Print the version number and exit." }) - table.insert(options, 5, {'h', "help", "k", nil, "Print this help message and exit." }) - table.insert(options, 6, {}) - table.insert(options, 7, {'F', "file", "kv", nil, "Read a given xmake.lua file." }) - table.insert(options, 8, {'P', "project", "kv", nil, "Change to the given project directory." + table.insert(options, 1, {'q', "quiet", "k", nil, "Quiet operation." }) + table.insert(options, 2, {'v', "verbose", "k", nil, "Print lots of verbose information." }) + table.insert(options, 3, {nil, "backtrace", "k", nil, "Print backtrace information for debugging." }) + table.insert(options, 4, {nil, "profile", "k", nil, "Print performance data for debugging." }) + table.insert(options, 5, {nil, "version", "k", nil, "Print the version number and exit." }) + table.insert(options, 6, {'h', "help", "k", nil, "Print this help message and exit." }) + table.insert(options, 7, {}) + table.insert(options, 8, {'F', "file", "kv", nil, "Read a given xmake.lua file." }) + table.insert(options, 9, {'P', "project", "kv", nil, "Change to the given project directory." , "Search priority:" , " 1. The Given Command Argument" , " 2. The Envirnoment Variable: XMAKE_PROJECT_DIR" , " 3. The Current Directory" }) - table.insert(options, 9, {}) + table.insert(options, 10, {}) end |
