Skip to content

Commit 05e0e07

Browse files
committed
Remove verbose arg
1 parent e97ac6b commit 05e0e07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/actions/cmake.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def _build_project(env, project, cmake_extra, build_tests=False, args_transforme
232232

233233
# build & install
234234
sh.exec(*toolchain.shell_env, cmake, "--build", project_build_dir, "--config",
235-
build_config, "--verbose", "--target", "install", working_dir=working_dir, check=True)
235+
build_config, "--target", "install", working_dir=working_dir, check=True)
236236

237237

238238
class CMakeBuild(Action):

0 commit comments

Comments
 (0)