]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Check the option for script src/AppQuickStart/app-quickstart.py
authorCamille GOUTTEBROZE <camille.gouttebroze@cea.fr>
Tue, 9 Dec 2014 10:59:46 +0000 (11:59 +0100)
committerCamille GOUTTEBROZE <camille.gouttebroze@cea.fr>
Tue, 9 Dec 2014 10:59:46 +0000 (11:59 +0100)
src/AppQuickStart/app-quickstart.py

index 4fb31e6a6a211d2f1715042ed5457f99e0b9f9fe..8567a67aa965b28f0afd5fc13d9a58733d84e16c 100755 (executable)
@@ -260,13 +260,9 @@ if __name__ == '__main__':
     if not options.name :
         raise RuntimeError( "A name must be given to the application. Please use option --name." )
 
-    #Check that no modules has the name of the application
-    if options.name in options.modules.split( ',' ) :
-        raise RuntimeError( "An application cannnot be named like one of its modules.\nWhat about naming your application %sIS (%s In Salome) ?" %( options.name,options.name ) )
-
-    #Check if the prefix is a directory
-    if not os.path.isdir( options.prefix ) :
-        raise RuntimeError( "%s is not a directory." % options.prefix )
+    #Check if the prefix's parent is a directory
+    if not os.path.isdir( os.path.dirname( options.prefix ) ) :
+        raise RuntimeError( "%s is not a directory." % os.path.dirname( options.prefix ) )
 
     #Generate sources of the profile
     profileGenerateSources( options, args )