diff options
author | Julien Dessaux | 2024-03-24 09:50:52 +0100 |
---|---|---|
committer | Julien Dessaux | 2024-03-24 10:03:55 +0100 |
commit | fe8d8027b37e6d679804d2c6893abe4608b8bad4 (patch) | |
tree | aa7ac473be00b047d39f9975c0bac1f6abd12ce7 /pkg/commands.go | |
parent | chore(promises): make a Status function part of the Promise interface (diff) | |
download | gonf-fe8d8027b37e6d679804d2c6893abe4608b8bad4.tar.gz gonf-fe8d8027b37e6d679804d2c6893abe4608b8bad4.tar.bz2 gonf-fe8d8027b37e6d679804d2c6893abe4608b8bad4.zip |
fix(promises): fixed IfRepaired promises chaining
Diffstat (limited to 'pkg/commands.go')
-rw-r--r-- | pkg/commands.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands.go b/pkg/commands.go index df42919..5403e5f 100644 --- a/pkg/commands.go +++ b/pkg/commands.go @@ -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 } |