1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-02 16:48:56 +00:00

Fix assignments in docker tests. (#57249)

This commit is contained in:
Felix Fontein 2019-05-31 23:47:53 +02:00 committed by GitHub
parent 1515afd92c
commit 7cd229aa97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 27 additions and 27 deletions

View file

@ -6,7 +6,7 @@
- name: Registering image name
set_fact:
inames: "{{ inames }} + [iname, iname_1]"
inames: "{{ inames + [iname, iname_1] }}"
####################################################################
## build.args ######################################################