Skip to content

Commit 62eb3b4

Browse files
Add --quiet to git submodule invocations. (#5944) (#5945)
(cherry picked from commit 921ca34) Signed-off-by: Miguel Company <miguelcompany@eprosima.com> Co-authored-by: Miguel Company <miguelcompany@eprosima.com>
1 parent aa3dd44 commit 62eb3b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/common/eprosima_libraries.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ macro(eprosima_find_package package)
9797
# Update submodule
9898
message(STATUS "Updating submodule thirdparty/${package}")
9999
execute_process(
100-
COMMAND git submodule update --recursive --init "thirdparty/${package}"
100+
COMMAND git submodule update --quiet --recursive --init "thirdparty/${package}"
101101
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
102102
RESULT_VARIABLE EXECUTE_RESULT
103103
)
@@ -220,7 +220,7 @@ macro(eprosima_find_thirdparty package thirdparty_name)
220220
# Update submodule
221221
message(STATUS "Updating submodule thirdparty/${thirdparty_name}")
222222
execute_process(
223-
COMMAND git submodule update --recursive --init "thirdparty/${thirdparty_name}"
223+
COMMAND git submodule update --quiet --recursive --init "thirdparty/${thirdparty_name}"
224224
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
225225
RESULT_VARIABLE EXECUTE_RESULT
226226
)

0 commit comments

Comments
 (0)