BUG: Fix CTest.UpdateGIT test for older git

Older git versions do not support 'git init --bare', so we instead use
the more proper 'git --bare init'.
This commit is contained in:
Brad King 2009-04-23 09:10:07 -04:00
parent f353df7ffc
commit d847ca8e27
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ message("Creating repository...")
file(MAKE_DIRECTORY ${TOP}/repo.git)
run_child(
WORKING_DIRECTORY ${TOP}/repo.git
COMMAND ${GIT} init --bare
COMMAND ${GIT} --bare init
)
file(REMOVE_RECURSE ${TOP}/repo.git/hooks)
set(REPO file://${TOP}/repo.git)