From: early Date: Wed, 23 Oct 2024 05:02:05 +0000 (-0600) Subject: Make app.Static's rootDir relative to be more aligned with other file include stuff X-Git-Url: https://git.earlybird.gay/?a=commitdiff_plain;h=d1c3413a0e1237be0193e9bc3e8651f2390f6b0a;p=today Make app.Static's rootDir relative to be more aligned with other file include stuff --- diff --git a/app/app.go b/app/app.go index 41d98c3..ccf1b75 100644 --- a/app/app.go +++ b/app/app.go @@ -12,6 +12,7 @@ import ( "os" "path" "path/filepath" + "runtime" "slices" "strings" "sync" @@ -184,6 +185,10 @@ func (app *App) Static(rootPath, rootDir string) error { if app.static == nil { app.static = make(map[string]http.Handler) } + _, relativeTo, _, _ := runtime.Caller(1) + if !path.IsAbs(rootDir) { + rootDir = path.Join(path.Dir(relativeTo), rootDir) + } var f func(fpath string) error f = func(fpath string) error { stat, err := os.Stat(fpath)