Always split by forward slashes when writing the TOC tree.
At that point, all slashes are normalized as forward slashes.
This commit is contained in:
parent
7362d4b6b2
commit
9178943e13
3
toc.go
3
toc.go
|
@ -7,7 +7,6 @@ package bindata
|
|||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"sort"
|
||||
"strings"
|
||||
)
|
||||
|
@ -130,7 +129,7 @@ func AssetDir(name string) ([]string, error) {
|
|||
}
|
||||
tree := newAssetTree()
|
||||
for i := range toc {
|
||||
pathList := strings.Split(toc[i].Name, string(os.PathSeparator))
|
||||
pathList := strings.Split(toc[i].Name, "/")
|
||||
tree.Add(pathList, toc[i])
|
||||
}
|
||||
return tree.WriteAsGoMap(w)
|
||||
|
|
Loading…
Reference in New Issue
Block a user