|
@@ -58,11 +58,11 @@ func (t *TemplateBundle) importTemplateFileContents(templatesPath string) error
|
58
|
58
|
func (t *TemplateBundle) importTemplateFileContentsForCog(templatesPath string, prefixName string, templateFileExtension string) error {
|
59
|
59
|
|
60
|
60
|
templateDirectory := filepath.Clean(templatesPath)
|
61
|
|
- RegisterStaticAssetsSearchPath(strings.Replace(templateDirectory, string(os.PathSeparator)+"templates", "", -1))
|
|
61
|
+ RegisterStaticAssetsSearchPath(strings.Replace(templateDirectory, "/"+"templates", "", -1))
|
62
|
62
|
//println("td: ", templateDirectory)
|
63
|
63
|
if err := filepath.Walk(templateDirectory, func(path string, info os.FileInfo, err error) error {
|
64
|
64
|
if strings.HasSuffix(path, templateFileExtension) {
|
65
|
|
- name := strings.TrimSuffix(strings.TrimPrefix(path, templateDirectory+string(os.PathSeparator)), TemplateFileExtension)
|
|
65
|
+ name := strings.TrimSuffix(strings.TrimPrefix(path, templateDirectory+"/"), TemplateFileExtension)
|
66
|
66
|
name = prefixName + "/" + name
|
67
|
67
|
contents, err := ioutil.ReadFile(path)
|
68
|
68
|
t.items[name] = string(contents)
|