|
@@ -172,8 +172,13 @@ func (t *TemplateSet) RestoreTemplateBundleFromDisk() error {
|
172
|
172
|
|
173
|
173
|
func (t *TemplateSet) GatherTemplates() {
|
174
|
174
|
|
175
|
|
- if UseStaticTemplateBundleFile == true && StaticTemplateBundleFileExists() == true {
|
176
|
|
- return
|
|
175
|
+ if UseStaticTemplateBundleFile == true {
|
|
176
|
+ err := t.RestoreTemplateBundleFromDisk()
|
|
177
|
+ if err != nil {
|
|
178
|
+ log.Println("Didn't find a template bundle from disk, will generate a new template bundle.")
|
|
179
|
+ } else {
|
|
180
|
+ return
|
|
181
|
+ }
|
177
|
182
|
}
|
178
|
183
|
|
179
|
184
|
bundle := NewTemplateBundle()
|
|
@@ -197,7 +202,7 @@ func (t *TemplateSet) GatherTemplates() {
|
197
|
202
|
|
198
|
203
|
func (t *TemplateSet) GatherCogTemplates(cogTemplatePath string, prefixName string, templateFileExtension string) {
|
199
|
204
|
|
200
|
|
- if UseStaticTemplateBundleFile == true && StaticTemplateBundleFileExists() == true {
|
|
205
|
+ if ShouldBundleStaticAssets == false || UseStaticTemplateBundleFile == true {
|
201
|
206
|
return
|
202
|
207
|
}
|
203
|
208
|
|
|
@@ -223,7 +228,6 @@ func (t *TemplateSet) GatherCogTemplates(cogTemplatePath string, prefixName stri
|
223
|
228
|
func StaticTemplateBundleFileExists() bool {
|
224
|
229
|
|
225
|
230
|
if _, err := os.Stat(StaticTemplateBundleFilePath); os.IsNotExist(err) {
|
226
|
|
-
|
227
|
231
|
return false
|
228
|
232
|
} else {
|
229
|
233
|
return true
|