From 9ad23f9ede0f183855c7c5d2d18ac0ee8ac0984a Mon Sep 17 00:00:00 2001 From: yonas Date: Wed, 24 Jul 2024 11:24:43 +0000 Subject: [PATCH] Replace Gitea with Forgejo --- services/doctor/paths.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/doctor/paths.go b/services/doctor/paths.go index 3f62d587ab..8e37f01ef5 100644 --- a/services/doctor/paths.go +++ b/services/doctor/paths.go @@ -60,7 +60,7 @@ func checkConfigurationFile(logger log.Logger, autofix bool, fileOpts configurat func checkConfigurationFiles(ctx context.Context, logger log.Logger, autofix bool) error { if fi, err := os.Stat(setting.CustomConf); err != nil || !fi.Mode().IsRegular() { logger.Error("Failed to find configuration file at '%s'.", setting.CustomConf) - logger.Error("If you've never ran Gitea yet, this is normal and '%s' will be created for you on first run.", setting.CustomConf) + logger.Error("If you've never ran Forgejo yet, this is normal and '%s' will be created for you on first run.", setting.CustomConf) logger.Error("Otherwise check that you are running this command from the correct path and/or provide a `--config` parameter.") logger.Critical("Cannot proceed without a configuration file") return err