diff options
| author | ruki <[email protected]> | 2020-07-22 22:36:24 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-07-22 22:36:24 +0800 |
| commit | 4802ad8f1a33e71bca727f345412b368b279e12a (patch) | |
| tree | 25260c15bac5ba345a9a401f00e487a0f8845c4c | |
| parent | 2ef5c7639b752c71b1190cd3f2204fe58ba0af59 (diff) | |
disaboe verbose config for other actions
| -rw-r--r-- | xmake/actions/build/main.lua | 2 | ||||
| -rw-r--r-- | xmake/actions/clean/main.lua | 2 | ||||
| -rw-r--r-- | xmake/actions/install/main.lua | 2 | ||||
| -rw-r--r-- | xmake/actions/run/main.lua | 2 | ||||
| -rw-r--r-- | xmake/actions/uninstall/main.lua | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/xmake/actions/build/main.lua b/xmake/actions/build/main.lua index 2ce139f54..886919d2d 100644 --- a/xmake/actions/build/main.lua +++ b/xmake/actions/build/main.lua @@ -96,7 +96,7 @@ function main() local targetname = option.get("target") -- config it first - task.run("config", {target = targetname}) + task.run("config", {target = targetname, verbose = false}) -- enter project directory local oldir = os.cd(project.directory()) diff --git a/xmake/actions/clean/main.lua b/xmake/actions/clean/main.lua index 359ed0a25..1e8d4064c 100644 --- a/xmake/actions/clean/main.lua +++ b/xmake/actions/clean/main.lua @@ -245,7 +245,7 @@ function main() local targetname = option.get("target") -- config it first - task.run("config", {target = targetname, require = false}) + task.run("config", {target = targetname, require = false, verbose = false}) -- init finished states _g.finished = {} diff --git a/xmake/actions/install/main.lua b/xmake/actions/install/main.lua index d0f0f8d4c..48f92c70f 100644 --- a/xmake/actions/install/main.lua +++ b/xmake/actions/install/main.lua @@ -68,7 +68,7 @@ function main() local targetname = option.get("target") -- config it first - task.run("config", {target = targetname, require = "n"}) + task.run("config", {target = targetname, require = "n", verbose = false}) -- check targets first _check_targets(targetname) diff --git a/xmake/actions/run/main.lua b/xmake/actions/run/main.lua index c04c5c8b9..d299b397c 100644 --- a/xmake/actions/run/main.lua +++ b/xmake/actions/run/main.lua @@ -192,7 +192,7 @@ function main() local targetname = option.get("target") -- config it first - task.run("config", {target = targetname, require = "n"}) + task.run("config", {target = targetname, require = "n", verbose = false}) -- check targets first _check_targets(targetname) diff --git a/xmake/actions/uninstall/main.lua b/xmake/actions/uninstall/main.lua index 4fa1f1bb4..7b656e3ac 100644 --- a/xmake/actions/uninstall/main.lua +++ b/xmake/actions/uninstall/main.lua @@ -33,7 +33,7 @@ function main() local targetname = option.get("target") -- config it first - task.run("config", {target = targetname, require = "n"}) + task.run("config", {target = targetname, require = "n", verbose = false}) -- attempt to uninstall directly try |
