1
0
Fork 0
forked from forgejo/forgejo

Merge remote-tracking branch 'forgejo/forgejo-branding' into forgejo

This commit is contained in:
Earl Warren 2023-05-16 15:03:59 +02:00
commit bf022834f9
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
78 changed files with 993 additions and 229 deletions

View file

@ -153,6 +153,9 @@ func SetCustomPathAndConf(providedCustom, providedConf, providedWorkPath string)
if giteaCustom, ok := os.LookupEnv("GITEA_CUSTOM"); ok {
CustomPath = giteaCustom
}
if forgejoCustom, ok := os.LookupEnv("FORGEJO_CUSTOM"); ok {
CustomPath = forgejoCustom
}
if len(providedCustom) != 0 {
CustomPath = providedCustom
}