diff options
author | Alan Rominger <arominge@redhat.com> | 2020-08-11 16:04:14 +0200 |
---|---|---|
committer | Alan Rominger <arominge@redhat.com> | 2020-08-11 16:04:14 +0200 |
commit | 2a0c61de630b35fd952f7574321eead45b700c83 (patch) | |
tree | 55c22f0c8d2d2efc33d03a8cb1d990e7830a8115 /awx_collection | |
parent | Merge pull request #7840 from beeankha/credential_input_idempotency (diff) | |
download | awx-2a0c61de630b35fd952f7574321eead45b700c83.tar.xz awx-2a0c61de630b35fd952f7574321eead45b700c83.zip |
Change regex to match what is in source
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/tools/roles/template_galaxy/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awx_collection/tools/roles/template_galaxy/tasks/main.yml b/awx_collection/tools/roles/template_galaxy/tasks/main.yml index 414f55b7de..96eb26413c 100644 --- a/awx_collection/tools/roles/template_galaxy/tasks/main.yml +++ b/awx_collection/tools/roles/template_galaxy/tasks/main.yml @@ -2,7 +2,7 @@ - name: Set the collection version in the tower_api.py file replace: path: "{{ collection_path }}/plugins/module_utils/tower_api.py" - regexp: '^ _COLLECTION_VERSION = "devel"' + regexp: '^ _COLLECTION_VERSION = "0.0.1-devel"' replace: ' _COLLECTION_VERSION = "{{ collection_version }}"' when: - "awx_template_version | default(True)" |