Explorar el Código

Adjustements to drush trpjbs-run

Stephen Ficklin hace 13 años
padre
commit
de06d332f4
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      tripal_core/tripal_core.drush.inc

+ 5 - 0
tripal_core/tripal_core.drush.inc

@@ -76,9 +76,14 @@ function tripal_core_drush_command() {
  */
  */
 function drush_tripal_core_tripal_launch_jobs () {
 function drush_tripal_core_tripal_launch_jobs () {
   $parallel = drush_get_option('parallel');   
   $parallel = drush_get_option('parallel');   
+  
   if($parallel){
   if($parallel){
+    print "Tripal Job Launcher (in parallel)\n";
+    print "-------------------\n";
     tripal_jobs_launch($do_parallel);
     tripal_jobs_launch($do_parallel);
   } else {
   } else {
+    print "Tripal Job Launcher\n";
+    print "-------------------\n";
     tripal_jobs_launch();  
     tripal_jobs_launch();  
   }
   }
 }
 }