We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am currently setup a development environment on SLES and I can see that vscode is not updated when no version is set:
- name: Install VS Code (zypper) become: yes community.general.zypper: name: "{{ visual_studio_code_package }}{{ (visual_studio_code_version | length > 0) | ternary('=' + visual_studio_code_version, '') }}" state: present
The code should be changed so that it installes the latest when no version is set:
- name: Install VS Code (zypper) become: yes community.general.zypper: name: "{{ visual_studio_code_package }}{{ (visual_studio_code_version | length > 0) | ternary('=' + visual_studio_code_version, '') }}" state: "{{ (visual_studio_code_version | length > 0) | ternary('present', 'latest') }}"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am currently setup a development environment on SLES and I can see that vscode is not updated when no version is set:
The code should be changed so that it installes the latest when no version is set:
The text was updated successfully, but these errors were encountered: