소스 검색

Small fix to drush re-run command to take into account the function name changes

Lacey Sanderson 12 년 전
부모
커밋
d502001c0d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tripal_core/tripal_core.drush.inc

+ 1 - 1
tripal_core/tripal_core.drush.inc

@@ -208,7 +208,7 @@ function drush_tripal_core_tripal_jobs_launch($username) {
 function drush_tripal_core_tripal_jobs_rerun($username, $job_id) {
 
   $new_job_id = tripal_jobs_rerun($job_id, FALSE);
-  drush_tripal_core_tripal_launch_jobs($username, $new_job_id);
+  drush_tripal_core_tripal_jobs_launch($username, $new_job_id);
 
 }