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 socket path not cleaned

pomdtr 85df7ff6 dff3a094

+7
+7
cmd/up.go
··· 234 234 235 235 if strings.HasPrefix(addr, "unix/") { 236 236 socketPath := strings.TrimPrefix(addr, "unix/") 237 + 238 + if utils.FileExists(socketPath) { 239 + if err := os.Remove(socketPath); err != nil { 240 + return nil, fmt.Errorf("failed to remove existing socket: %v", err) 241 + } 242 + } 243 + 237 244 if config != nil { 238 245 return tls.Listen("unix", utils.ExpandTilde(socketPath), config) 239 246 }