Skip to content

Conversation

@stewmcl
Copy link
Contributor

@stewmcl stewmcl commented Nov 25, 2025

No description provided.

Copy link
Contributor

@bimsara-yasitha01 bimsara-yasitha01 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very minor readability change, looks good!

Comment on lines +67 to +69
when:
- item.files is defined and item.files | length > 0 and item.files.0.path is defined
- ansible_architecture == 'aarch64'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if this changes the behaviour, but could the conditions be broken down further to make it more readable?

Very minor though - if this suggestion changes the logic don't worry about it! Otherwise looks great

Suggested change
when:
- item.files is defined and item.files | length > 0 and item.files.0.path is defined
- ansible_architecture == 'aarch64'
when:
- item.files is defined
- item.files | length > 0
- item.files.0.path is defined
- ansible_architecture == 'aarch64'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants