lint: fix unhandled errors
This commit is contained in:
parent
9bef739621
commit
d7cbc22da4
12 changed files with 151 additions and 56 deletions
|
|
@ -205,7 +205,10 @@ func runComposerCLI(quiet bool, command ...string) json.RawMessage {
|
|||
log.Printf("$ composer-cli %s\n", strings.Join(command, " "))
|
||||
}
|
||||
|
||||
cmd.Start()
|
||||
err = cmd.Start()
|
||||
if err != nil {
|
||||
log.Fatalf("Could not start command: %v", err)
|
||||
}
|
||||
|
||||
var result json.RawMessage
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue