Skip to content

Commit

Permalink
Merge pull request #162 from galaxyproject/list-concat-fix
Browse files Browse the repository at this point in the history
Update syntax for list concatenation
  • Loading branch information
hexylena committed Jul 17, 2022
2 parents 8ef1614 + 22d51e8 commit daa7f3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/static_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@

- name: Append local_tool_conf.xml to tool_config_file Galaxy config option
set_fact:
galaxy_tool_config_files: "{{ galaxy_tool_config_files }} + ['{{ galaxy_config_dir ~ '/local_tool_conf.xml' }}']"
galaxy_tool_config_files: "{{ galaxy_tool_config_files + [galaxy_config_dir ~ '/local_tool_conf.xml'] }}"
when: galaxy_local_tools is defined

- name: Append shed_tool_conf.xml to tool_config_file Galaxy config option
set_fact:
galaxy_tool_config_files: "{{ galaxy_tool_config_files }} + ['{{ galaxy_shed_tool_config_file }}']"
galaxy_tool_config_files: "{{ galaxy_tool_config_files + [galaxy_shed_tool_config_file] }}"
when: __galaxy_major_version is version('19.09', '<') and galaxy_shed_tool_config_file not in galaxy_tool_config_files

- name: Ensure dynamic job rules paths exists
Expand Down

0 comments on commit daa7f3a

Please sign in to comment.