Compare commits

..

2 commits

4 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
## 0.2.0a7 (2025-05-02)
### Fix
- do not force use_data usage
## 0.2.0a6 (2025-04-30)
### Fix

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.output_ansible"
version = "0.2.0a6"
version = "0.2.0a7"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "Rougail output ansible"

View file

@ -1 +1 @@
__version__ = "0.2.0a6"
__version__ = "0.2.0a7"

View file

@ -52,7 +52,7 @@ ansible:
disabled:
type: jinja
jinja: |
{{% if step.output is propertyerror or (step.output != 'ansible' and 'ansible' not in step.user_data) %}}
{{% if step.output is propertyerror or (step.output != 'ansible' and (step.user_data is propertyerror or 'ansible' not in step.user_data)) %}}
disabled
{{% endif %}}