mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Warnings should not increment the exit status
This commit is contained in:
@@ -72,7 +72,7 @@ class Validator(object):
|
|||||||
if warnings:
|
if warnings:
|
||||||
for warning in self.warnings:
|
for warning in self.warnings:
|
||||||
print('WARNING: %s' % warning)
|
print('WARNING: %s' % warning)
|
||||||
ret.append(1)
|
# ret.append(1) # Don't incrememt exit status for warnings
|
||||||
|
|
||||||
if self.errors or (warnings and self.warnings):
|
if self.errors or (warnings and self.warnings):
|
||||||
print()
|
print()
|
||||||
|
|||||||
Reference in New Issue
Block a user