summaryrefslogtreecommitdiff
path: root/environment/LocalConfig.pm
diff options
context:
space:
mode:
Diffstat (limited to 'environment/LocalConfig.pm')
-rw-r--r--environment/LocalConfig.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/environment/LocalConfig.pm b/environment/LocalConfig.pm
index 62ee2dd3..d136610d 100644
--- a/environment/LocalConfig.pm
+++ b/environment/LocalConfig.pm
@@ -71,6 +71,7 @@ sub environment_name {
sub qsub_args {
my $mem = shift @_;
die "qsub_args requires a memory amount as a parameter, e.g. 4G" unless $mem;
+ return 'qsub -V -cwd' if environment_name() eq 'StarCluster';
my $mf = $CONFIG{'QSubMemFlag'} or die "QSubMemFlag not set for $senvironment_name";
my $cmd = "qsub -S /bin/bash ${mf}${mem}";
if ($CONFIG{'QSubQueue'}) { $cmd .= ' ' . $CONFIG{'QSubQueue'}; }