We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a4f058 commit 41730b2Copy full SHA for 41730b2
src/sync.rs
@@ -123,7 +123,7 @@ impl ProjectConfig {
123
// Retain only those entries that match the filter string
124
if let Some(filter) = &self.filter {
125
self.projects.retain(|_name, project| {
126
- project.destination.contains(filter) //|| project.path.contains(&filter)
+ project.destination.contains(filter) || project.name == _SELF_CONFIG_ //|| project.path.contains(&filter)
127
});
128
}
129
0 commit comments