]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
app-quickstart copies bin/app-template
authorCamille GOUTTEBROZE <camille.gouttebroze@cea.fr>
Tue, 16 Sep 2014 12:37:38 +0000 (14:37 +0200)
committerCamille GOUTTEBROZE <camille.gouttebroze@cea.fr>
Tue, 16 Sep 2014 12:37:38 +0000 (14:37 +0200)
bin/app-quickstart.py

index dce0224bbff1199b2e0cf80b946384bc1a906c6b..e839ecd0b68615c988fa1ae95c4e14ac0787c956 100755 (executable)
@@ -71,14 +71,16 @@ def generate_sources( options, args ) :
 
     #Check if the directory of the sources already exists
     if os.path.exists( source_dir ) and not options.force :
-        print "Directory %s already exsits." %source_dir
+        print "Directory %s already exists." %source_dir
         print "Use option --force to overwrite it."
         return
 
     # Create directory
     if os.path.exists( source_dir ) :
          shutil.rmtree( source_dir )
-    os.makedirs( source_dir )
+    template_dir = os.path.join( os.path.dirname(__file__), "app-template" )
+    shutil.copytree( template_dir, source_dir )
+    #os.makedirs( source_dir )
 
 # -----------------------------------------------------------------------------