fix: support error_ignore for a task call (#2552)

This commit is contained in:
Timothy Rule
2025-12-12 22:28:20 +01:00
committed by GitHub
parent e0d6b71971
commit ea933bcc55
2 changed files with 6 additions and 3 deletions

View File

@@ -93,6 +93,7 @@ func (c *Cmd) UnmarshalYAML(node *yaml.Node) error {
c.Vars = cmdStruct.Vars
c.For = cmdStruct.For
c.Silent = cmdStruct.Silent
c.IgnoreError = cmdStruct.IgnoreError
return nil
}