this repo has no description smallweb.run
smallweb
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: correct DENO_DIR environment variable formatting

pomdtr a8543982 887ba521

+1 -1
+1 -1
worker/worker.go
··· 74 74 75 75 env = append(env, fmt.Sprintf("HOME=%s", os.Getenv("HOME"))) 76 76 env = append(env, "DENO_NO_UPDATE_CHECK=1") 77 - env = append(env, "DENO_DIR=%s", filepath.Join(xdg.CacheHome, "smallweb", "deno")) 77 + env = append(env, fmt.Sprintf("DENO_DIR=%s", filepath.Join(xdg.CacheHome, "smallweb", "deno"))) 78 78 79 79 env = append(env, fmt.Sprintf("SMALLWEB_VERSION=%s", build.Version)) 80 80 env = append(env, fmt.Sprintf("SMALLWEB_DIR=%s", rootDir))