summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorhaturatu <taro@eyes4you.org>2025-02-22 23:34:52 +0900
committerhaturatu <taro@eyes4you.org>2025-02-22 23:34:52 +0900
commit954bd68652a6e96281761276cd3cb2bd00470009 (patch)
tree800e3a1bc585d20d409a26083fb46ad0c0ab3828 /system
parent9345907a5c1737c6c2c1f8eba52a568035b08493 (diff)
fix: my repo
Diffstat (limited to 'system')
-rw-r--r--system/cfg/env.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/cfg/env.go b/system/cfg/env.go
index 71f48a2..267f30a 100644
--- a/system/cfg/env.go
+++ b/system/cfg/env.go
@@ -25,7 +25,7 @@ func DataDir() string {
func TlsDir() string {
tlsDir := os.Getenv("PONZU_TLS_DIR")
if tlsDir == "" {
- tlsDir = filepath.Join(getWd(), "cmd", "ponzu", "vendor", "github.com", "ponzu-cms", "ponzu", "system", "tls")
+ tlsDir = filepath.Join(getWd(), "cmd", "ponzu", "vendor", "github.com", "haturatu", "ponzu", "system", "tls")
}
return tlsDir
}
@@ -34,7 +34,7 @@ func AdminStaticDir() string {
staticDir := os.Getenv("PONZU_ADMINSTATIC_DIR")
if staticDir == "" {
- staticDir = filepath.Join(getWd(), "cmd", "ponzu", "vendor", "github.com", "ponzu-cms", "ponzu", "system", "admin", "static")
+ staticDir = filepath.Join(getWd(), "cmd", "ponzu", "vendor", "github.com", "haturatu", "ponzu", "system", "admin", "static")
}
return staticDir
}