-
-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Watch & Workspace: path error #197
Comments
Can you please build a project exhibiting this problem (it doesn't have to have many files) ? |
Uh, there are a lot of things, and it’s a work project, so not something I can share like that. With crates A, B and C, if I put watch = [A, B, C], it seems that it will
|
I found the same issue. In this repo, I want to add watch = ["testcases/veryl"] Instead of it, I wrote like below, it worked fine. watch = ["../../testcases/veryl"] This is because the root path of the watch list is the path of each crate in the workspace.
So the
It works fine, but I think bit confusable because the root path of |
Hey there,
I’m trying out Bacon on a rather complex project organized in a Workspace.
I’ve configured a number of jobs, which are all launched correctly, no problem.
However, the watch directories are borked.
From what I see in the logs, the directories in the watch use the first crate as the root.
For example let’s say ̇I have:
Folder1
Folder2
If I put watch = ["Folder1", "Folder2"] then beacon will complain that it can’t find "/root/path/Folder1/Folder1" and "/root/path/Folder1/Folder2".
If I put watch = ["../Folder1", "../Folder2"] however it seems to be working just fine.
The text was updated successfully, but these errors were encountered: