]> git.earlybird.gay Git - today/commitdiff
Make app.Static's rootDir relative to be more aligned with other file include stuff
authorearly <me@earlybird.gay>
Wed, 23 Oct 2024 05:02:05 +0000 (23:02 -0600)
committerearly <me@earlybird.gay>
Wed, 23 Oct 2024 05:02:05 +0000 (23:02 -0600)
app/app.go

index 41d98c3b7597b28f0729eca50dc25933f908eb36..ccf1b75d8bcdfbc75daaec4a84cfacf37f9b94b0 100644 (file)
@@ -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)