diff options
author | Brad King <brad.king@kitware.com> | 2010-06-04 21:01:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-06-04 21:01:23 (GMT) |
commit | d0a1b9efd00ae2a6125f46dc7a4a8114e5afc61a (patch) | |
tree | 979b16427de442df19ec50a05885b982e3613e11 /Source/CTest/cmCTestGIT.cxx | |
parent | ac17dc4a43e7350d7a6daed252adb35a8986fd4b (diff) | |
download | CMake-d0a1b9efd00ae2a6125f46dc7a4a8114e5afc61a.zip CMake-d0a1b9efd00ae2a6125f46dc7a4a8114e5afc61a.tar.gz CMake-d0a1b9efd00ae2a6125f46dc7a4a8114e5afc61a.tar.bz2 |
Fix ctest_update log prefix for git submodule update
Commit 67277bac (Teach ctest_update about Git submodules, 2010-05-04)
accidentally logged "git submodule update" with the prefixes "pull-out"
and "pull-err". Fix it to use "submodule-out" and "submodule-err"
instead.
Diffstat (limited to 'Source/CTest/cmCTestGIT.cxx')
-rw-r--r-- | Source/CTest/cmCTestGIT.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestGIT.cxx b/Source/CTest/cmCTestGIT.cxx index 156a938..f5ba361 100644 --- a/Source/CTest/cmCTestGIT.cxx +++ b/Source/CTest/cmCTestGIT.cxx @@ -119,7 +119,7 @@ bool cmCTestGIT::UpdateImpl() char const* git_submodule[] = {git, "submodule", "update", 0}; OutputLogger out2(this->Log, "submodule-out> "); OutputLogger err2(this->Log, "submodule-err> "); - return this->RunChild(git_submodule, &out, &err); + return this->RunChild(git_submodule, &out2, &err2); } return false; } |