Félix Saparelli
Félix Saparelli
Debug logs. How you installed it. Give me something here.
Hmm, okay, so there is an issue here. Not entirely sure why it loops infinitely on your machine yet, and this is why logs are useful: on my machine, with...
I'm assuming you downgraded to 8.1.1 because 8.2 didn't work? If that's not the case, could you confirm which version range exactly doesn't work
It's, honestly, pretty far down my stack.
I mean that: - this is a small open source project, not a commercial product - i'm a single unpaid maintainer with other projects and many priorities - noone else...
Right now what you should do is ``` cargo watch -s 'cargo check && success || failure' ``` where success and failure are the chimes commands you've defined
Fairly easy to determine if it's a cargo-watch issue or not: ```console # build image local> $ cd server; docker build -f Dockerfile.dev server # start docker manually into a...
At a guess, though, I would say it's probably to do with the cargo cache in `~/.cargo`
Specifically this was disabled when using a trailing command due to bugs (#203), but still exists elsewhere. Watchexec has a different mechanism for it so it still works there for...
yeah, that's your program not resetting the screen gracefully on restart. try doing ``` cargo watch -s 'reset; cargo run' ```