diff options
author | Brad King <brad.king@kitware.com> | 2017-02-16 18:15:42 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2017-02-16 18:15:42 (GMT) |
commit | aa18d5befec57e69628106cc5d95829a687bfd5c (patch) | |
tree | f2b36287a8b79e7a711e403d35ddd597a807c098 | |
parent | 5d5be3bd96f4521b38774855fb70e4238e346db2 (diff) | |
parent | 51849bbab8b1b6b8299dc08e98ca1524cc1e168a (diff) | |
download | CMake-aa18d5befec57e69628106cc5d95829a687bfd5c.zip CMake-aa18d5befec57e69628106cc5d95829a687bfd5c.tar.gz CMake-aa18d5befec57e69628106cc5d95829a687bfd5c.tar.bz2 |
Merge topic 'fix-ctest_update-svn'
51849bba ctest_update: Fix svn log and external loading
-rw-r--r-- | Source/CTest/cmCTestSVN.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestSVN.cxx b/Source/CTest/cmCTestSVN.cxx index fc405ca..410e0d4 100644 --- a/Source/CTest/cmCTestSVN.cxx +++ b/Source/CTest/cmCTestSVN.cxx @@ -523,8 +523,11 @@ private: void cmCTestSVN::LoadRepositories() { + if (!this->Repositories.empty()) { + return; + } + // Info for root repository - this->Repositories.clear(); this->Repositories.push_back(SVNInfo("")); this->RootInfo = &(this->Repositories.back()); |