We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd5fa9e commit e467ecbCopy full SHA for e467ecb
model/app/webapp.go
@@ -539,7 +539,9 @@ func loadManifestFromDir(slug string) (*WebappManifest, error) {
539
}
540
return nil, err
541
542
- app := &WebappManifest{}
+ app := &WebappManifest{
543
+ doc: &couchdb.JSONDoc{},
544
+ }
545
man, err := app.ReadManifest(manFile, slug, "file://localhost"+dir)
546
if err != nil {
547
return nil, fmt.Errorf("Could not parse the manifest: %s", err.Error())
0 commit comments