Skip to content

Commit 3ee82d7

Browse files
committed
style(rust): fix cargo fmt long string formatting
1 parent 8048e92 commit 3ee82d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src-tauri/src/utils/path.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,11 @@ pub fn get_rclone_binary_path() -> Result<PathBuf, String> {
133133
return Ok(PathBuf::from(path_str));
134134
}
135135
}
136-
Err("Rclone not found. Please install it via your package manager (e.g., apt install rclone)".to_string())
136+
Err(
137+
"Rclone not found. Please install it via your package manager (e.g., apt install \
138+
rclone)"
139+
.to_string(),
140+
)
137141
}
138142
}
139143

0 commit comments

Comments
 (0)