Skip to content

Commit

Permalink
Merge pull request #249 from consuldemocracy/gpg_keys_import
Browse files Browse the repository at this point in the history
Fix the import of RVM GPG keys
  • Loading branch information
javierm authored Oct 4, 2024
2 parents 422783a + 15033dc commit 9ed643c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galaxy/rvm.ruby/tasks/rvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
check_mode: False
with_items: '{{ rvm1_gpg_key_servers }}'
register: gpg_import
when: not ansible_check_mode and rvm1_gpg_keys != '' and (gpg_import is not defined or gpg_import.rc != 0)
when: not ansible_check_mode and rvm1_gpg_keys != '' and (gpg_import is not defined or (gpg_import.rc is defined and gpg_import.rc != 0))
ignore_errors: True

- name: Was GPG import from keyservers succesfull?
Expand Down

0 comments on commit 9ed643c

Please sign in to comment.