commit/galaxy-central: davebgx: Fix step handling for setup of perl and ruby environments.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/0fd0a4273b92/ Changeset: 0fd0a4273b92 Branch: stable User: davebgx Date: 2014-06-09 17:11:24 Summary: Fix step handling for setup of perl and ruby environments. Affected #: 1 file diff -r 2ade3d7303fadb457d766ec928157e824264dbf6 -r 0fd0a4273b92cabfb1e0d03d20542c47aa59b9a8 lib/tool_shed/galaxy_install/tool_dependencies/recipe/step_handler.py --- a/lib/tool_shed/galaxy_install/tool_dependencies/recipe/step_handler.py +++ b/lib/tool_shed/galaxy_install/tool_dependencies/recipe/step_handler.py @@ -859,7 +859,7 @@ return tool_dependency, filtered_actions, dir return tool_dependency, None, None # Pull in perl dependencies (runtime). - env_file_builder.handle_action_shell_file_paths( env_file_builder, action_dict ) + env_file_builder.handle_action_shell_file_paths( action_dict ) # Recursively add dependent PERL5LIB and PATH to env.sh & anything else needed. env_file_builder.append_line( name="PERL5LIB", action="prepend_to", @@ -1083,7 +1083,7 @@ return tool_dependency, filtered_actions, dir return tool_dependency, None, None # Pull in ruby dependencies (runtime). - env_file_builder.handle_action_shell_file_paths( env_file_builder, action_dict ) + env_file_builder.handle_action_shell_file_paths( action_dict ) env_file_builder.append_line( name="GEM_PATH", action="prepend_to", value=install_environment.install_dir ) 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