From: Don Armstrong Date: Wed, 5 Aug 2015 16:44:53 +0000 (-0700) Subject: mem needs to be concatenated, not separated with , X-Git-Url: https://git.donarmstrong.com/?p=uiuc_igb_scripts.git;a=commitdiff_plain;h=4e6aab12b0aa8a7752f231aa3b1219e8232250c5 mem needs to be concatenated, not separated with , --- diff --git a/dqsub b/dqsub index 183d351..7257d5c 100755 --- a/dqsub +++ b/dqsub @@ -158,7 +158,7 @@ sub generate_qsub_options{ $l[$#l] .= ':ppn='.$options->{ppn}; } if ($options->{mem}) { - push @l,'mem=',$options->{mem}; + push @l,'mem='.$options->{mem}; } push @qo,'-l',join(',',@l) if @l; if ($options->{interactive}) {