chore(*): update command error type

Signed-off-by: storyicon <yuanchao@bilibili.com>
This commit is contained in:
storyicon 2021-07-22 20:41:06 +08:00
parent a4d4c459ba
commit 1c73b92f0f
No known key found for this signature in database
GPG key ID: 245915D985F966CF
5 changed files with 9 additions and 9 deletions

View file

@ -104,7 +104,7 @@ func (b *BasicCompiler) Compile(ctx context.Context, protoFilePath string) error
b.Logger, b.dir, b.protocPath, arguments, nil)
if err != nil {
return &ErrCompile{
ErrCommandExec: err,
ErrCommandExec: err.(*command.ErrCommandExec),
}
}
return nil