1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/018d08d81c1e/ Changeset: 018d08d81c1e User: davebgx Date: 2014-07-14 15:19:10 Summary: Merge fix from stable. Affected #: 1 file diff -r 5b7e495d6f2fefe2b51da8bc438e4053b2a7a6af -r 018d08d81c1e58e9aa42e8c5b179c413f6fb509b 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 @@ -703,7 +703,9 @@ filename = action_dict[ 'target_filename' ] else: filename = url.split( '/' )[ -1 ] - self.url_download( work_dir, filename, url ) + if current_dir is not None: + work_dir = current_dir + self.url_download( work_dir, filename, url, extract=action_dict[ 'extract' ] ) if initial_download: dir = os.path.curdir return tool_dependency, filtered_actions, 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.