We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d4f227 + 4080eb0 commit 934c09eCopy full SHA for 934c09e
roles/davinci_resolve/tasks/main.yml
@@ -60,7 +60,12 @@
60
61
- name: Set pkgver
62
ansible.builtin.set_fact:
63
- pkgver: "{{ major_version }}.{{ minor_version }}.{{ release_version }}"
+ pkgver: >-
64
+ {{
65
+ major_version
66
+ + ('.' + minor_version if minor_version | int != 0 or release_version | int != 0 else '')
67
+ + ('.' + release_version if release_version | int != 0 else '')
68
+ }}
69
70
# First step: Register to get the actual download URL
71
- name: Register to get the download URL
0 commit comments