summaryrefslogtreecommitdiff
path: root/vest
diff options
context:
space:
mode:
authorJonathan Clark <jon.h.clark@gmail.com>2011-03-11 10:22:31 -0500
committerJonathan Clark <jon.h.clark@gmail.com>2011-03-11 10:22:31 -0500
commit92ca6e23b39043ad026c07a5aab71ffc750c1db2 (patch)
tree23feeaaa0787afc174fe466f3599023433e3bac1 /vest
parentdb200aeefcfad33e789a8790961ef5c0f66d8ba3 (diff)
just use grep and dont check return code
Diffstat (limited to 'vest')
-rwxr-xr-xvest/dist-vest.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/vest/dist-vest.pl b/vest/dist-vest.pl
index 6a5959dc..f95754dc 100755
--- a/vest/dist-vest.pl
+++ b/vest/dist-vest.pl
@@ -396,7 +396,7 @@ while (1){
print STDERR "Waiting for mappers to complete...\n";
while ($nmappers > 0) {
sleep 5;
- my @livejobs = grep(/$joblist/, split(/\n/, check_output("qstat | awk '{if($0 !~ \" C \"){print}}'")));
+ my @livejobs = grep(/$joblist/, split(/\n/, unchecked_output("qstat | grep -v ' C '")));
$nmappers = scalar @livejobs;
}
print STDERR "All mappers complete.\n";