gps: Return output buffer bytes on error

This is crude, but it will restore output context to various git errors,
which has been crippling. We desperately need to work on formatting
these errors better.
This commit is contained in:
sam boyer 2017-12-07 13:54:23 -05:00
Родитель b741887298
Коммит e4d57f7eda
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -77,8 +77,6 @@ func (c cmd) CombinedOutput() ([]byte, error) {
}
}()
if err := c.Cmd.Wait(); err != nil {
return nil, err
}
return b.Bytes(), nil
err := c.Cmd.Wait()
return b.Bytes(), err
}