Skip to content

Commit

Permalink
Update syntax for list concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
natefoo committed Jul 17, 2022
1 parent 8ef1614 commit 22d51e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/static_setup.yml
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 22d51e8

Please sign in to comment.