Skip to content

Commit 41730b2

Browse files
committed
always watch for self-config
1 parent 9a4f058 commit 41730b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ impl ProjectConfig {
123123
// Retain only those entries that match the filter string
124124
if let Some(filter) = &self.filter {
125125
self.projects.retain(|_name, project| {
126-
project.destination.contains(filter) //|| project.path.contains(&filter)
126+
project.destination.contains(filter) || project.name == _SELF_CONFIG_ //|| project.path.contains(&filter)
127127
});
128128
}
129129

0 commit comments

Comments
 (0)