Skip to content

Commit

Permalink
Fix calculation of _galaxy_do_bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
dometto committed Jun 5, 2024
1 parent 1f2bad1 commit 77a8384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/set_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

- name: Determine whether to bootstrap Galaxy
set_fact:
_galaxy_do_bootstrap: _galaxy_bootstrap and (_galaxy_tool_files + _galaxy_workflow_files | length > 0 or _galaxy_custom_repo | length > 0)
_galaxy_do_bootstrap: "{{ _galaxy_bootstrap and _galaxy_tool_files | length + _galaxy_workflow_files | length + _galaxy_custom_repo | length > 0}}"

- name: Generate a bootstrap key
when: _galaxy_do_bootstrap
Expand Down

0 comments on commit 77a8384

Please sign in to comment.