diff options
| -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 |
