diff options
author | Brad King <brad.king@kitware.com> | 2017-02-15 19:45:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-02-15 19:45:31 (GMT) |
commit | efac65d67b32c407044db6536da4f43ed9546be7 (patch) | |
tree | 4ce055c2d54abdceb3ac45b09ac07692933030a6 | |
parent | 2b1cdd85b8943059e5f2b27735df261743749342 (diff) | |
parent | 51849bbab8b1b6b8299dc08e98ca1524cc1e168a (diff) | |
download | CMake-efac65d67b32c407044db6536da4f43ed9546be7.zip CMake-efac65d67b32c407044db6536da4f43ed9546be7.tar.gz CMake-efac65d67b32c407044db6536da4f43ed9546be7.tar.bz2 |
Merge branch 'fix-ctest_update-svn' into release-3.7
-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()); |