renderer: remove redundant clone in CmdRenderer
As suggested by clippy: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
This commit is contained in:
parent
56ceb627b8
commit
714c5fb81e
|
@ -166,7 +166,7 @@ impl CmdRenderer {
|
|||
} else {
|
||||
// Let this bubble through to later be handled by
|
||||
// handle_render_command_error.
|
||||
abs_exe.to_path_buf()
|
||||
abs_exe
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue