Updates bindata after vendor update.

This commit is contained in:
James Phillips 2016-08-09 19:03:10 -07:00
parent 60f4d07fc5
commit 282a4b8a3f
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11

View File

@ -401,8 +401,11 @@ func _filePath(dir, name string) string {
} }
func assetFS() *assetfs.AssetFS { func assetFS() *assetfs.AssetFS {
assetInfo := func(path string) (os.FileInfo, error) {
return os.Stat(path)
}
for k := range _bintree.Children { for k := range _bintree.Children {
return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: AssetInfo, Prefix: k} return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: assetInfo, Prefix: k}
} }
panic("unreachable") panic("unreachable")
} }