Skip to content

Commit

Permalink
Merge pull request Jguer#278 from Morganamilo/fixerr
Browse files Browse the repository at this point in the history
Add missing err check
  • Loading branch information
Morganamilo authored Mar 22, 2018
2 parents f1fd4a1 + f018c0c commit 3d78709
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions conflicts.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,11 @@ func checkForAllConflicts(dc *depCatagories) error {
}()

wg.Wait()

if err != nil {
return err
}

if len(innerConflicts) != 0 {
fmt.Println(
red("\nInner conflicts found:"))
Expand Down

0 comments on commit 3d78709

Please sign in to comment.