commit/galaxy-central: dan: Fix naming of install action 'setup_virtual_env' --> 'setup_virtualenv'.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/8877489b446d/ Changeset: 8877489b446d User: dan Date: 2014-04-28 21:05:32 Summary: Fix naming of install action 'setup_virtual_env' --> 'setup_virtualenv'. Affected #: 2 files diff -r 197878e9908c647916f460d4d110a90940c8317e -r 8877489b446d73aaad93cbb1569866a9b824ac5a lib/tool_shed/galaxy_install/tool_dependencies/recipe/recipe_manager.py --- a/lib/tool_shed/galaxy_install/tool_dependencies/recipe/recipe_manager.py +++ b/lib/tool_shed/galaxy_install/tool_dependencies/recipe/recipe_manager.py @@ -434,7 +434,7 @@ setup_perl_environment=step_handler.SetupPerlEnvironment(), setup_r_environment=step_handler.SetupREnvironment(), setup_ruby_environment=step_handler.SetupRubyEnvironment(), - setup_virtual_env=step_handler.SetupVirtualEnv(), + setup_virtualenv=step_handler.SetupVirtualEnv(), shell_command=step_handler.ShellCommand(), template_command=step_handler.TemplateCommand() ) return step_handlers_by_type @@ -453,4 +453,4 @@ install_dir=install_dir, is_binary_download=is_binary_download ) return action_dict - \ No newline at end of file + diff -r 197878e9908c647916f460d4d110a90940c8317e -r 8877489b446d73aaad93cbb1569866a9b824ac5a 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 @@ -1106,7 +1106,7 @@ class SetupVirtualEnv( RecipeStep ): def __init__( self ): - self.type = 'setup_virtual_env' + self.type = 'setup_virtualenv' def execute_step( self, app, tool_dependency, package_name, actions, action_dict, filtered_actions, env_file_builder, install_environment, work_dir, install_dir, current_dir=None, initial_download=False ): 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