mirror of
https://github.com/offen/docker-volume-backup.git
synced 2025-09-06 22:44:58 +08:00
Error message on demultiplexing command output receives bad error arg (#295)
This commit is contained in:
parent
2252c26edf
commit
1d549042fc
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ func (s *script) exec(containerRef string, command string, user string) ([]byte,
|
|||
outputDone <- err
|
||||
}()
|
||||
|
||||
if <-outputDone != nil {
|
||||
if err := <-outputDone; err != nil {
|
||||
return nil, nil, fmt.Errorf("exec: error demultiplexing output: %w", err)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue