diff options
author | haturatu <taro@eyes4you.org> | 2025-02-22 23:34:52 +0900 |
---|---|---|
committer | haturatu <taro@eyes4you.org> | 2025-02-22 23:34:52 +0900 |
commit | 954bd68652a6e96281761276cd3cb2bd00470009 (patch) | |
tree | 800e3a1bc585d20d409a26083fb46ad0c0ab3828 | |
parent | 9345907a5c1737c6c2c1f8eba52a568035b08493 (diff) |
fix: my repo
-rw-r--r-- | system/cfg/env.go | 4 |
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 } |