Explorar el Código

Return error on copy

Andy Cedilnik hace 23 años
padre
commit
2990c3db57
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Source/ccommand.cxx

+ 1 - 1
Source/ccommand.cxx

@@ -45,7 +45,7 @@ int main(int ac, char** av)
     if ( args[1] == "copy" && args.size() == 4 )
       {
       cmSystemTools::cmCopyFile(args[2].c_str(), args[3].c_str());
-      return 0;
+      return cmSystemTools::GetErrorOccuredFlag();
       }
     if ( args[1] == "remove" && args.size() > 2 )
       {