loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'fix: correct doctor commands and rename to forgejo' (#5133) from fnetx/fix-doctor-help into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5133
Reviewed-by: Gusted <gusted@noreply.codeberg.org>

Otto a8d01a77 bf65f1e5

+3 -3
+3 -3
services/doctor/authorizedkeys.go
··· 75 75 logger.Critical( 76 76 "authorized_keys file %q is out of date.\nRegenerate it with:\n\t\"%s\"\nor\n\t\"%s\"", 77 77 fPath, 78 - "gitea admin regenerate keys", 79 - "gitea doctor --run authorized-keys --fix") 80 - return fmt.Errorf(`authorized_keys is out of date and should be regenerated with "gitea admin regenerate keys" or "gitea doctor --run authorized-keys --fix"`) 78 + "forgejo admin regenerate keys", 79 + "forgejo doctor check --run authorized-keys --fix") 80 + return fmt.Errorf(`authorized_keys is out of date and should be regenerated with "forgejo admin regenerate keys" or "forgejo doctor check --run authorized-keys --fix"`) 81 81 } 82 82 logger.Warn("authorized_keys is out of date. Attempting rewrite...") 83 83 err = asymkey_model.RewriteAllPublicKeys(ctx)