소스 검색

Test ability to execute simple commands

Abdullah Almsaeed 8 년 전
부모
커밋
77c960eabb
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      tripal_core/api/tripal_core.jobs.api.inc

+ 1 - 0
tripal_core/api/tripal_core.jobs.api.inc

@@ -296,6 +296,7 @@ function tripal_execute_job($job_id, $redirect = TRUE) {
   // set the end time for this job
   if ($job->end_time == 0) {
     $cmd = "drush trp-run-jobs --job_id=".escapeshellarg($job_id)." --username=".escapeshellarg($user->name)." --root=".DRUPAL_ROOT." 2>&1";
+    $cmd = "echo \"Test\"";
     exec($cmd, $output, $return_code);
     $response = 'Response <br>';
     foreach($output as $line) {