| 222 | } |
| 223 | |
| 224 | bool cmCTestGIT::UpdateInternal() |
| 225 | { |
| 226 | std::string custom = |
| 227 | this->Makefile->GetSafeDefinition("CTEST_GIT_UPDATE_CUSTOM"); |
| 228 | if (!custom.empty()) { |
| 229 | return this->UpdateByCustom(custom); |
| 230 | } |
| 231 | return this->UpdateByFetchAndReset(); |
| 232 | } |
| 233 | |
| 234 | bool cmCTestGIT::UpdateImpl() |
| 235 | { |
no test coverage detected