Skip to content

Commit 6ee8832

Browse files
author
Tyler Anton
authored
Fix incorrect Windows path for OrcaSlicer executable (#60)
1 parent e46e8c9 commit 6ee8832

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/slicer/orca.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ fn find_orca_slicer() -> anyhow::Result<PathBuf> {
107107
// Find the orcaslicer executable path on Windows.
108108
#[cfg(target_os = "windows")]
109109
fn find_orca_slicer() -> anyhow::Result<PathBuf> {
110-
let app_path = std::path::PathBuf::from("C:\\Program Files\\OrcaSlicer\\OrcaSlicer.exe");
110+
let app_path = std::path::PathBuf::from("C:\\Program Files\\OrcaSlicer\\orca-slicer.exe");
111111
if app_path.exists() {
112112
Ok(app_path)
113113
} else {

0 commit comments

Comments
 (0)