Merge pull request #571 from Morganamilo/abort-conflict

Abort ealy when there's conflicts with --noconfirm
This commit is contained in:
Anna 2018-07-20 20:53:25 +01:00 committed by GitHub
commit 0e5cd51910
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -180,6 +180,10 @@ func (dp *depPool) CheckConflicts() (mapStringSet, error) {
}
fmt.Println()
if config.NoConfirm && !config.UseAsk {
return nil, fmt.Errorf("Package conflicts can not be resolved with noconfirm, aborting")
}
}
return conflicts, nil