fix window

This commit is contained in:
astaxie 2013-03-15 20:37:05 +08:00
parent 3c4dd99fbe
commit e6ab2f73b6
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ func (self *templatefile) visit(paths string, f os.FileInfo, err error) error {
replace := strings.NewReplacer("\\", "/")
a := []byte(paths)
a = a[len([]byte(self.root)):]
subdir := path.Dir(replace.Replace(strings.TrimLeft(string(a), "/")))
subdir := path.Dir(strings.TrimLeft(replace.Replace(string(a)), "/"))
if _, ok := self.files[subdir]; ok {
self.files[subdir] = append(self.files[subdir], paths)
} else {