Add missing err check

This commit is contained in:
morganamilo 2018-03-22 19:47:12 +00:00
parent f1fd4a1203
commit f018c0c200
No known key found for this signature in database
GPG key ID: 6FE9E7996B0B082E

View file

@ -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:"))