Skip to content

Commit

Permalink
Bug fix for Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjadev64 committed Apr 25, 2024
1 parent 36b518b commit 71214fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/plugins/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async fn initialise_plugin(path: &path::PathBuf) -> anyhow::Result<()> {
if os.platform == platform {
#[cfg(target_os = "windows")]
if manifest.code_path_windows.is_some() {
code_path = manifest.code_path_windows;
code_path = manifest.code_path_windows.clone();
}
#[cfg(target_os = "macos")]
if manifest.code_path_macos.is_some() {
Expand Down

0 comments on commit 71214fd

Please sign in to comment.