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:
parent
26519d591e
commit
0916cc888a
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue