Skip to content

Commit 1f575d6

Browse files
committed
fix(clippy): remove needless return statement
1 parent 3ee82d7 commit 1f575d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-tauri/src/utils/path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ pub fn get_rclone_binary_path() -> Result<PathBuf, String> {
118118
// Windows/macOS: rclone is bundled with the app
119119
#[cfg(not(target_os = "linux"))]
120120
{
121-
return get_binary_path("rclone", "Rclone");
121+
get_binary_path("rclone", "Rclone")
122122
}
123123

124124
// Linux: rclone is not bundled, find it in system PATH

0 commit comments

Comments
 (0)