Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
ba09fc1b
Commit
ba09fc1b
authored
May 23, 2017
by
Leo Gordon
Browse files
bugfix: wc -l on OSX had leading spaces
parent
e88bc153
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/Bio/EnsEMBL/Hive/Meadow/LSF.pm
modules/Bio/EnsEMBL/Hive/Meadow/LSF.pm
+1
-1
No files found.
modules/Bio/EnsEMBL/Hive/Meadow/LSF.pm
View file @
ba09fc1b
...
...
@@ -106,7 +106,7 @@ sub count_running_workers {
# warn "LSF::count_running_workers() running cmd:\n\t$cmd\n";
my
$run_count
=
qx/$cmd/
;
chomp
(
$run_count
);
$run_count
=~
s/\s+//g
;
# remove both leading and trailing spaces
return
$run_count
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment