diff options
author | cat_or_not <41955154+catornot@users.noreply.github.com> | 2023-04-16 15:55:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-16 21:55:09 +0200 |
commit | c106e8ac0eafdbb1c7c549f93f7e8ad0d3cd558c (patch) | |
tree | 7b9a3f2ce86687b166411c4b72cd8e1f80a041c7 /src-tauri/src/github/pull_requests.rs | |
parent | d1d6c3001d0066d4774d4b92560f6098f78e689b (diff) | |
download | FlightCore-c106e8ac0eafdbb1c7c549f93f7e8ad0d3cd558c.tar.gz FlightCore-c106e8ac0eafdbb1c7c549f93f7e8ad0d3cd558c.zip |
Use pass-by-reference where possible (#266)
Use pass-by-reference where possible
also contains some other small changes
Diffstat (limited to 'src-tauri/src/github/pull_requests.rs')
-rw-r--r-- | src-tauri/src/github/pull_requests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/github/pull_requests.rs b/src-tauri/src/github/pull_requests.rs index a7ac1fd2..96ac623f 100644 --- a/src-tauri/src/github/pull_requests.rs +++ b/src-tauri/src/github/pull_requests.rs @@ -259,7 +259,7 @@ pub async fn apply_launcher_pr( for file_name in files_to_copy { let source_file_path = format!("{}/{}", extract_directory, file_name); let destination_file_path = format!("{}/{}", game_install_path, file_name); - match std::fs::copy(&source_file_path, &destination_file_path) { + match std::fs::copy(source_file_path, destination_file_path) { Ok(_result) => (), Err(err) => { return Err(format!( |