Commit f91b8c5f authored by Bo-Yi Wu's avatar Bo-Yi Wu
Browse files

refactor: check the error returned by os.MkdirAll()

parent 97170916
Showing with 3 additions and 1 deletion
+3 -1
......@@ -660,7 +660,9 @@ please consider changing to GITEA_CUSTOM`)
cfg.Section("server").Key("LFS_JWT_SECRET").SetValue(LFS.JWTSecretBase64)
os.MkdirAll(filepath.Dir(CustomConf), os.ModePerm)
if err := os.MkdirAll(filepath.Dir(CustomConf), os.ModePerm); err != nil {
log.Fatal(4, "Fail to create '%s': %v", CustomConf, err)
}
if err := cfg.SaveTo(CustomConf); err != nil {
log.Fatal(4, "Error saving generated JWT Secret to custom config: %v", err)
return
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment