]> Creatis software - bbtk.git/blobdiff - kernel/appli/bbPlugPackage/bbPlugPackage.cpp
#3087 BBTK Feature New Normal - BinaryOperation Min Max option
[bbtk.git] / kernel / appli / bbPlugPackage / bbPlugPackage.cpp
index bf6081451ad6b6d8844505f654b20e5884c5dc53..8ced93949321a22c41a3e11b1fbd1a412bd4ab4c 100644 (file)
@@ -41,18 +41,18 @@ int main(int argc, char **argv)
       return (int)1;
     }
 
-  std::string path(argv[1]);
+  std::string path = argv[1] ;
   #ifdef WIN32
   std::string fname = path + "\\bbtkPackage"; 
   #else
-  std::string fname = path + "/bbtkPackage"
+  std::string fname = path + "/bbtkPackage" ;
   #endif
   
-
   if ( ! Utilities::FileExists( fname ) )
     {
-      std::cout << "* ERROR : The directory '"<<path<<"' does not contain a 'bbtkPackage' file"        << std::endl;
+      std::cout << "* ERROR : The directory '"<< path <<" ' does not contain a 'bbtkPackage' file" << std::endl;
       return (int)2; 
+
     }
        
   std::ifstream f;