summaryrefslogtreecommitdiff
path: root/vest/dist-vest.pl
diff options
context:
space:
mode:
authorJonathan Clark <jon.h.clark@gmail.com>2011-03-11 09:05:04 -0500
committerJonathan Clark <jon.h.clark@gmail.com>2011-03-11 09:05:04 -0500
commiteaddcca02022bc5b7c122ca456c98c608f60985d (patch)
tree9baf6c80d49bf62d92631f919c4e9641b3aff1d3 /vest/dist-vest.pl
parentd93815d18783d0cc3d8185f1dc8b96ff3f11b5dd (diff)
fix my dumb bug that killed qsub functionality
Diffstat (limited to 'vest/dist-vest.pl')
-rwxr-xr-xvest/dist-vest.pl2
1 files changed, 0 insertions, 2 deletions
diff --git a/vest/dist-vest.pl b/vest/dist-vest.pl
index 973a29ef..f6f661b9 100755
--- a/vest/dist-vest.pl
+++ b/vest/dist-vest.pl
@@ -194,7 +194,6 @@ sub modbin {
my $src=$$_;
$$_="$bindir/".basename($src);
check_call("cp -p $src $$_");
- die "cp $src $$_ failed: $!" unless $? == 0;
}
}
sub dirsize {
@@ -374,7 +373,6 @@ while (1){
$nmappers++;
my $qcmd = "QSUB_CMD -N $client_name -o /dev/null -e $logdir/$client_name.ER $script_file";
my $jobid = check_output("$qcmd");
- die "qsub failed: $!\nCMD was: $qcmd" unless $? == 0;
chomp $jobid;
$jobid =~ s/^(\d+)(.*?)$/\1/g;
$jobid =~ s/^Your job (\d+) .*$/\1/;