We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b789c85 commit 4af4d87Copy full SHA for 4af4d87
src/config/rt/watch.rs
@@ -60,6 +60,7 @@ impl RtcWatch {
60
// Take the canonical path of each of the specified watch targets.
61
let mut paths = vec![];
62
for path in watch {
63
+ let path = build.working_directory.join(path);
64
let canon_path = path.canonicalize().map_err(|_| {
65
anyhow!(
66
"error taking the canonical path to the watch path: {:?}",
@@ -78,6 +79,7 @@ impl RtcWatch {
78
79
let mut ignored_paths = ignore
80
.into_iter()
81
.map(|path| {
82
83
path.canonicalize().map_err(|_| {
84
85
"error taking the canonical path to the watch ignore path: {:?}",
0 commit comments