mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	refactor: check the error returned by os.MkdirAll()
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user