diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-04 15:16:53 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-04 15:16:53 (GMT) |
commit | 37f2d32686d57b1c12822d6585b81134544a86c4 (patch) | |
tree | 8d15f097a36a02f048f2632e8b0e439cd89a951d /Source/CTest | |
parent | 9619d54003970f9160b31ad6e04c85b1812faf3f (diff) | |
download | CMake-37f2d32686d57b1c12822d6585b81134544a86c4.zip CMake-37f2d32686d57b1c12822d6585b81134544a86c4.tar.gz CMake-37f2d32686d57b1c12822d6585b81134544a86c4.tar.bz2 |
ENH: Allow spaces in update command
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestUpdateHandler.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestUpdateHandler.cxx b/Source/CTest/cmCTestUpdateHandler.cxx index d6b11af..bbbca97 100644 --- a/Source/CTest/cmCTestUpdateHandler.cxx +++ b/Source/CTest/cmCTestUpdateHandler.cxx @@ -288,6 +288,8 @@ int cmCTestUpdateHandler::ProcessHandler() } } + updateCommand = "\"" + updateCommand + "\""; + // First, check what the current state of repository is std::string command = ""; switch( updateType ) |