Updates bindata after vendor update.

pull/2261/head
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
1 changed files with 4 additions and 1 deletions

View File

@ -401,8 +401,11 @@ func _filePath(dir, name string) string {
}
func assetFS() *assetfs.AssetFS {
assetInfo := func(path string) (os.FileInfo, error) {
return os.Stat(path)
}
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")
}