febreeze

Results 5 comments of febreeze

Adding to this issue, it would be great to have a more direct api for conditional collision checks. I know u have the conditional in the options, but a fluid...

https://github.com/maddalax/htmgo/blob/5d9c2f8ada8dc67f2a3a2bb4c3c059a2bd3bc6cd/cli/htmgo/tasks/run/runserver.go#L14 problem is here, for some reason on windows, the tmp-dir gets not cleaned before, prolly because of the fact that the exe is still in use.

```go existing := process.GetProcessByName("run-server") if existing != nil { slog.Debug("process already running, killing it", slog.String("command", "run-server")) process.KillProcess(*existing) time.Sleep(time.Millisecond * 50) } ``` yeah adding this first thing in func Server,...