This commit is contained in:
VirtualHotBar
2024-05-07 16:26:17 +08:00
parent 6627e00227
commit e8a134ece2
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
"preview": "vite preview",
"tauri": "tauri",
"tauri-dev": "tauri dev",
"tauri-build": "tauri build "
"tauri-build": "tauri build"
},
"dependencies": {
"@ant-design/charts": "^2.0.3",

View File

@@ -16,7 +16,7 @@ fn check_rclone() {
let bin_path = "res/bin/";
if !Path::new(bin_path).exists() {
std::fs::create_dir(bin_path).expect("Failed to create rclone directory");
std::fs::create_dir_all(bin_path).expect("Failed to create rclone directory");
};
let temp_dir = Path::new("res/temp/");