fixed typo

This commit is contained in:
PrintedScript 2024-01-21 00:14:07 +08:00
parent 2c895eb5f5
commit 2e2bc87682
1 changed files with 2 additions and 4 deletions

View File

@ -298,8 +298,7 @@ Terminal=true
Version={}
MimeType=x-scheme-handler/syntax-player;", latest_bootstrapper_path.to_str().unwrap(), latest_bootstrapper_path.to_str().unwrap(), env!("CARGO_PKG_VERSION"));
let desktop_file_path = "~/.local/share/applications/syntax-player.desktop";
let desktop_file_path = dirs::data_local_dir().unwrap().join("applications").join("syntax-player.desktop");
std::fs::write(desktop_file_path, desktop_file_content).unwrap();
info("Please launch SYNTAX from the website, to continue with the update process.");
@ -390,8 +389,7 @@ Terminal=true
Version={}
MimeType=x-scheme-handler/syntax-player;", latest_bootstrapper_path.to_str().unwrap(), latest_bootstrapper_path.to_str().unwrap(), env!("CARGO_PKG_VERSION"));
let desktop_file_path = "~/.local/share/applications/syntax-player.desktop";
let desktop_file_path = dirs::data_local_dir().unwrap().join("applications").join("syntax-player.desktop");
std::fs::write(desktop_file_path, desktop_file_content).unwrap();
}