We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f4195 commit 88f3e76Copy full SHA for 88f3e76
build/manifest/main.go
@@ -106,7 +106,7 @@ func applyManifest(manifest *model.Manifest) error {
106
if err := ioutil.WriteFile(
107
"server/manifest.go",
108
[]byte(fmt.Sprintf(pluginIDGoFileTemplate, manifest.Id, manifest.Version)),
109
- 0644,
+ 0600,
110
); err != nil {
111
return errors.Wrap(err, "failed to write server/manifest.go")
112
}
@@ -116,7 +116,7 @@ func applyManifest(manifest *model.Manifest) error {
116
117
"webapp/src/manifest.js",
118
[]byte(fmt.Sprintf(pluginIDJSFileTemplate, manifest.Id, manifest.Version)),
119
120
121
return errors.Wrap(err, "failed to open webapp/src/manifest.js")
122
0 commit comments