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.
This commit is contained in:
Brad King 2012-03-02 08:07:47 -05:00
parent 26519d591e
commit 0916cc888a
1 changed files with 1 additions and 1 deletions

View File

@ -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.