1
0
mirror of https://github.com/Jguer/yay.git synced 2026-05-12 16:06:20 +02:00

Update vendored dependencies

This commit is contained in:
Jguer 2018-06-19 11:00:47 +01:00
parent fbe04c8658
commit 6d04c2ebce
No known key found for this signature in database
GPG Key ID: 09754DBECF21746F
3 changed files with 5 additions and 2 deletions

4
Gopkg.lock generated
View File

@ -5,7 +5,7 @@
branch = "master"
name = "github.com/jguer/go-alpm"
packages = ["."]
revision = "f09b14fad0ccb0df7e5b699da8bcf3b45db4d0ab"
revision = "1114f773cdfb05f577438f7a0538eccabc9cf012"
[[projects]]
branch = "master"
@ -17,7 +17,7 @@
branch = "master"
name = "github.com/mikkeloscar/gopkgbuild"
packages = ["."]
revision = "7b0e7c63b22efc73e1c10e6f3117fdc03cd21816"
revision = "2bb4f1f1db67f81fe50f9c1c4ad9db4f20fd6b22"
[solve-meta]
analyzer-name = "dep"

View File

@ -201,6 +201,7 @@ lineloop:
curRepo.Servers = append(curRepo.Servers, line.Values...)
continue lineloop
case "Include":
conf.Include = append(conf.Include, line.Values[0])
f, err := os.Open(line.Values[0])
if err != nil {
err = fmt.Errorf("error while processing Include directive at line %d: %s",

View File

@ -211,6 +211,8 @@ func lexEnv(l *lexer) stateFn {
}
case r == '\t':
l.ignore()
case r == ' ':
l.ignore()
case r == '#':
return lexComment
default: