Skip to content

Commit

Permalink
fix linux builds
Browse files Browse the repository at this point in the history
  • Loading branch information
KAJdev committed Jul 23, 2023
1 parent 0065f05 commit 3317206
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions packages/stablestudio-ui/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/stablestudio-ui/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ tiny_http = "0.12.0"
portpicker = "0.1.1"
http = "0.2.9"
once_cell = "1.18.0"
fork = "0.1.22"

[features]
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
Expand Down
2 changes: 1 addition & 1 deletion packages/stablestudio-ui/src-tauri/src/show_path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use fork::{daemon, Fork};
use std::process::Command;
#[cfg(target_os = "linux")]
use std::{fs::metadata, path::PathBuf}; // dep: fork = "0.1"
use std::{fs::metadata, path::PathBuf};

#[tauri::command]
pub fn show_in_folder(path: String) {
Expand Down

0 comments on commit 3317206

Please sign in to comment.