diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-05-02 20:41:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-05-02 20:41:06 (GMT) |
commit | 67490f57a9f90a17ffb32f7fd9dec8705453e4b2 (patch) | |
tree | 05080198be58bef17ce2f29300107f00eb1169c0 /Utilities/Release | |
parent | 3832369ffa75afae00e7a637d6f882b594df0f71 (diff) | |
download | CMake-67490f57a9f90a17ffb32f7fd9dec8705453e4b2.zip CMake-67490f57a9f90a17ffb32f7fd9dec8705453e4b2.tar.gz CMake-67490f57a9f90a17ffb32f7fd9dec8705453e4b2.tar.bz2 |
ENH: more stuff
Diffstat (limited to 'Utilities/Release')
-rwxr-xr-x | Utilities/Release/cmake_login | 1 | ||||
-rw-r--r-- | Utilities/Release/release_cmake.cmake | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Utilities/Release/cmake_login b/Utilities/Release/cmake_login new file mode 100755 index 0000000..a3ea3e4 --- /dev/null +++ b/Utilities/Release/cmake_login @@ -0,0 +1 @@ +cmake diff --git a/Utilities/Release/release_cmake.cmake b/Utilities/Release/release_cmake.cmake index 74b802c..fe1dcd6 100644 --- a/Utilities/Release/release_cmake.cmake +++ b/Utilities/Release/release_cmake.cmake @@ -19,7 +19,7 @@ message("Creating CMake release ${CMAKE_VERSION} on ${HOST} with parallel = ${PR macro(remote_command comment command) message("${comment}") if(${ARGC} GREATER 2) - execute_process(COMMAND ssh ${HOST} ${command} RESULT_VARIABLE result INPUT_FILE ${ARGV0}) + execute_process(COMMAND ssh ${HOST} ${command} RESULT_VARIABLE result INPUT_FILE ${ARGV2}) else(${ARGC} GREATER 2) execute_process(COMMAND ssh ${HOST} ${command} RESULT_VARIABLE result) endif(${ARGC} GREATER 2) @@ -37,6 +37,7 @@ remote_command( remote_command( "Login into cvs." "cvs -d ${CVSROOT} login" cmake_login) +message(FATAL_ERROR "done") # checkout the source remote_command( "Checkout the source for ${CMAKE_VERSION}" |