We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ef2858 commit ad1e826Copy full SHA for ad1e826
qlty-check/src/executor/invocation_result.rs
@@ -282,13 +282,13 @@ impl InvocationResult {
282
283
for workspace_entry in self.invocation.target_paths.iter() {
284
let prefixed_path = if let Some(prefix) = &self.plan.plugin.prefix {
285
- PathBuf::from(prefix).join(&workspace_entry)
+ PathBuf::from(prefix).join(workspace_entry)
286
} else {
287
PathBuf::from(&workspace_entry)
288
};
289
290
let workspace_path = self.plan.workspace.root.join(&prefixed_path);
291
- let staged_path = self.plan.target_root.join(&workspace_entry);
+ let staged_path = self.plan.target_root.join(workspace_entry);
292
293
info!("workspace_path file {:?}", &workspace_path);
294
info!("staged_path file {:?}", &staged_path);
0 commit comments