diff options
-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 } |