1
0
mirror of https://github.com/Jguer/yay.git synced 2025-08-16 11:37:11 +02:00

Merge pull request #410 from Morganamilo/ignore2

Fix --ignore flag while skipping updates ammended
This commit is contained in:
Anna 2018-05-12 00:25:54 +01:00 committed by GitHub
commit 4143aaf6fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,12 +115,15 @@ func install(parser *arguments) error {
}
value, _, exists := cmdArgs.getArg("ignore")
ignoreStr := strings.Join(ignore.toSlice(), ",")
if exists {
ignoreStr += "," + value
if len(ignore) > 0 {
ignoreStr := strings.Join(ignore.toSlice(), ",")
if exists {
ignoreStr += "," + value
}
arguments.options["ignore"] = ignoreStr
}
arguments.options["ignore"] = ignoreStr
fmt.Println()
for pkg := range aurUp {