diff options
author | Brad King <brad.king@kitware.com> | 2012-03-02 13:07:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-03-02 13:07:47 (GMT) |
commit | 0916cc888a086293f4c17e9c927f2267e1fdb755 (patch) | |
tree | b30c961140ea0b955ee73a771ee473f62fd33767 /Tests | |
parent | 26519d591ea28d3f26f34c625c2d57db6f302d63 (diff) | |
download | CMake-0916cc888a086293f4c17e9c927f2267e1fdb755.zip CMake-0916cc888a086293f4c17e9c927f2267e1fdb755.tar.gz CMake-0916cc888a086293f4c17e9c927f2267e1fdb755.tar.bz2 |
CTest.UpdateHG: Fix repo URL for local filesystem (#13001)
Use "file:///c:/" instead of "file://c:/" because the latter
looks like a machine:port URL instead of a local file URL.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CTestUpdateHG.cmake.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CTestUpdateHG.cmake.in b/Tests/CTestUpdateHG.cmake.in index 543ddd9..5a9daae 100644 --- a/Tests/CTestUpdateHG.cmake.in +++ b/Tests/CTestUpdateHG.cmake.in @@ -28,7 +28,7 @@ run_child( WORKING_DIRECTORY ${TOP}/repo.hg COMMAND ${HG} init ) -set(REPO file://${TOP}/repo.hg) +set(REPO file:///${TOP}/repo.hg) #----------------------------------------------------------------------------- # Import initial content into the repository. |