1
0
mirror of https://github.com/Jguer/yay.git synced 2025-09-03 13:01:20 +02:00

Update vendored packages

This commit is contained in:
Jguer 2018-02-17 16:31:32 +00:00
parent 25eb2e2a16
commit 2da25e87d1
No known key found for this signature in database
GPG Key ID: 09754DBECF21746F
2 changed files with 13 additions and 1 deletions

2
Gopkg.lock generated
View File

@ -5,7 +5,7 @@
branch = "master" branch = "master"
name = "github.com/jguer/go-alpm" name = "github.com/jguer/go-alpm"
packages = ["."] packages = ["."]
revision = "542c122094f863fd9f5d412ab7c0bb57474e08ef" revision = "b5b0f1a50034078ac481705ac6608d42beeb1695"
[[projects]] [[projects]]
branch = "master" branch = "master"

View File

@ -96,3 +96,15 @@ const (
LogDebug LogDebug
LogFunction LogFunction
) )
type Question uint
const (
QuestionInstallIgnorepkg Question = 1 << iota
QuestionReplacePkg
QuestionConflictPkg
QuestionCorruptedPkg
QuestionRemovePkgs
QuestionSelectProvider
QuestionImportKey
)