Skip to content

Commit b316d5c

Browse files
committedAug 13, 2019
make sure the complete signal is writen in the last line.
1 parent 78380eb commit b316d5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎util/qsubM

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ while(<IS>){
7979
$JBs{$OPT{'N'}}{$OPT{'TD'}}{$job_seq}{'opt'}.= "-q $OPT{'q'} -P $OPT{'P'} ";
8080

8181
open OUTS,">$qsubDir/$JBname.sh" or die "can\'t open split shell: $qsubDir/$JBname.sh\n";
82-
print OUTS "$cmd\n[ \$? -eq 0 ] && echo this-work-is-complete\n";
82+
print OUTS "$cmd\n[ \$? -eq 0 ] && echo -e \"\\nthis-work-is-complete\"\n";
8383
close OUTS;
8484
$allJobs[$job_seq] = join(" ",$OPT{'N'},$OPT{'TD'},$OPT{'B'});
8585
}

0 commit comments

Comments
 (0)
Please sign in to comment.