I want to run the following commands side by side
cargo watch "check" cargo watch "build"
I want to run cargo watch build in the background and use cargo watch check to view error messages.
The problem is that cargo watch check always starts after cargo watch build , and then you also need to wait for the file to lock
cargo check Blocking waiting for file lock on build directory
I do not think that a file lock will be required to verify the cargo. Can I disable file locking in a truck?
source share