ソースを参照

Merge pull request #571 from Morganamilo/abort-conflict

Abort ealy when there's conflicts with --noconfirm
Anna 6 年 前
コミット
0e5cd51910
1 ファイル変更4 行追加0 行削除
  1. 4 0
      depCheck.go

+ 4 - 0
depCheck.go

@@ -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