Skip to content

Commit

Permalink
linux
Browse files Browse the repository at this point in the history
  • Loading branch information
VirtualHotBar committed May 7, 2024
1 parent 6627e00 commit e8a134e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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/");
Expand Down

0 comments on commit e8a134e

Please sign in to comment.