fix #260
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -162,7 +162,7 @@ func getTplDeep(root, file string, t *template.Template) (*template.Template, [] | ... | @@ -162,7 +162,7 @@ func getTplDeep(root, file string, t *template.Template) (*template.Template, [] |
| 162 | } else { | 162 | } else { |
| 163 | relativefile := filepath.Join(filepath.Dir(file), m[1]) | 163 | relativefile := filepath.Join(filepath.Dir(file), m[1]) |
| 164 | if e, _ := FileExists(relativefile); e { | 164 | if e, _ := FileExists(relativefile); e { |
| 165 | t, _, err = getTplDeep(root, m[1], t) | 165 | t, _, err = getTplDeep(root, relativefile, t) |
| 166 | if err != nil { | 166 | if err != nil { |
| 167 | return nil, [][]string{}, err | 167 | return nil, [][]string{}, err |
| 168 | } | 168 | } | ... | ... |
-
Please register or sign in to post a comment