commit/galaxy-central: jmchilton: Fix for interpreter on version commands (when different from command interpreter).
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/e832e4664714/ Changeset: e832e4664714 User: jmchilton Date: 2014-06-20 23:00:38 Summary: Fix for interpreter on version commands (when different from command interpreter). Thanks to Will Holtz for tracking down the problem and Peter Cock for submitting the patch. Affected #: 1 file diff -r c972ce1e3e8840309dceaa40ac6858c3156fdff3 -r e832e466471403d54d788193c938f3c4d139142c lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py +++ b/lib/galaxy/tools/__init__.py @@ -1264,7 +1264,7 @@ executable = self.version_string_cmd.split()[0] abs_executable = os.path.abspath(os.path.join(self.tool_dir, executable)) command_line = self.version_string_cmd.replace(executable, abs_executable, 1) - self.version_string_cmd = self.interpreter + " " + command_line + self.version_string_cmd = version_cmd_interpreter + " " + command_line # Parallelism for tasks, read from tool config. parallelism = root.find("parallelism") if parallelism is not None and parallelism.get("method"): Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org