Explorar el Código

BUG: Remove duplicate prefix

Andy Cedilnik hace 20 años
padre
commit
8483fa93c5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Source/CTest/cmCTestSubmitHandler.cxx

+ 1 - 1
Source/CTest/cmCTestSubmitHandler.cxx

@@ -255,7 +255,7 @@ bool cmCTestSubmitHandler::SubmitUsingHTTP(const cmStdString& localprefix,
         {
         local_file = localprefix + "/" + *file;
         }
-      cmStdString remote_file = remoteprefix + remoteprefix + cmSystemTools::GetFilenameName(*file);
+      cmStdString remote_file = remoteprefix + cmSystemTools::GetFilenameName(*file);
 
       *m_LogFile << "\tUpload file: " << local_file.c_str() << " to "
           << remote_file.c_str() << std::endl;