commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/0befff261a71/ Changeset: 0befff261a71 User: nsoranzo Date: 2013-12-20 17:48:04 Summary: Log a failed chmod action when installing tool dependencies. Affected #: 1 file diff -r 0de3c7e7d6327e1af295fc4d81419efd8b5f41af -r 0befff261a714eccb452821c8bf7463a0a8d3fc9 lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py --- a/lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py +++ b/lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py @@ -698,6 +698,8 @@ for target_file, mode in action_dict[ 'change_modes' ]: if os.path.exists( target_file ): os.chmod( target_file, mode ) + else: + log.error( 'Invalid file %s specified, ignoring %s action.', target_file, action_type ) elif action_type == 'download_binary': url = action_dict[ 'url' ] target_directory = action_dict.get( 'target_directory', None ) https://bitbucket.org/galaxy/galaxy-central/commits/fa0531f4ee00/ Changeset: fa0531f4ee00 User: dannon Date: 2013-12-31 15:56:46 Summary: Merged in nsoranzo/galaxy-central (pull request #284) Log a failed chmod action when installing tool dependencies. Affected #: 1 file diff -r c304bf90e8cffa8c39eba2d14d940ac24a67457a -r fa0531f4ee00ed81f9229e02ae847d84b7e0bdf0 lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py --- a/lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py +++ b/lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py @@ -698,6 +698,8 @@ for target_file, mode in action_dict[ 'change_modes' ]: if os.path.exists( target_file ): os.chmod( target_file, mode ) + else: + log.error( 'Invalid file %s specified, ignoring %s action.', target_file, action_type ) elif action_type == 'download_binary': url = action_dict[ 'url' ] target_directory = action_dict.get( 'target_directory', None ) 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