···6060func checkConfigurationFiles(ctx context.Context, logger log.Logger, autofix bool) error {
6161 if fi, err := os.Stat(setting.CustomConf); err != nil || !fi.Mode().IsRegular() {
6262 logger.Error("Failed to find configuration file at '%s'.", setting.CustomConf)
6363- logger.Error("If you've never ran Gitea yet, this is normal and '%s' will be created for you on first run.", setting.CustomConf)
6363+ logger.Error("If you've never ran Forgejo yet, this is normal and '%s' will be created for you on first run.", setting.CustomConf)
6464 logger.Error("Otherwise check that you are running this command from the correct path and/or provide a `--config` parameter.")
6565 logger.Critical("Cannot proceed without a configuration file")
6666 return err