Merge pull request #278 from Morganamilo/fixerr

Add missing err check
This commit is contained in:
Morgana 2018-03-22 20:19:15 +00:00 committed by GitHub
commit 3d7870903b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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