fix(promises): fixed IfRepaired promises chaining
This commit is contained in:
parent
eb9d5f861a
commit
fe8d8027b3
4 changed files with 5 additions and 5 deletions
|
@ -42,7 +42,7 @@ type CommandPromise struct {
|
|||
}
|
||||
|
||||
func (c *CommandPromise) IfRepaired(p ...Promise) Promise {
|
||||
c.chain = p
|
||||
c.chain = append(c.chain, p...)
|
||||
return c
|
||||
}
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ func (f *FilePromise) Template(contents any) *FilePromise {
|
|||
|
||||
// We want to satisfy the Promise interface
|
||||
func (f *FilePromise) IfRepaired(p ...Promise) Promise {
|
||||
f.chain = p
|
||||
f.chain = append(f.chain, p...)
|
||||
return f
|
||||
}
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ type PackagePromise struct {
|
|||
}
|
||||
|
||||
func (p *PackagePromise) IfRepaired(ps ...Promise) Promise {
|
||||
p.chain = ps
|
||||
p.chain = append(p.chain, ps...)
|
||||
return p
|
||||
}
|
||||
|
||||
|
|
|
@ -41,8 +41,8 @@ type ServicePromise struct {
|
|||
status Status
|
||||
}
|
||||
|
||||
func (s *ServicePromise) IfRepaired(ps ...Promise) Promise {
|
||||
s.chain = ps
|
||||
func (s *ServicePromise) IfRepaired(p ...Promise) Promise {
|
||||
s.chain = append(s.chain, p...)
|
||||
return s
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue