fix(desktop): use current_binary() to support symlinked executables (#7102)
This commit is contained in:
parent
ecbcbfbe90
commit
bb09df0c77
1 changed files with 3 additions and 2 deletions
|
|
@ -10,8 +10,9 @@ fn get_cli_install_path() -> Option<std::path::PathBuf> {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_sidecar_path() -> std::path::PathBuf {
|
pub fn get_sidecar_path() -> std::path::PathBuf {
|
||||||
tauri::utils::platform::current_exe()
|
// Get binary with symlinks support
|
||||||
.expect("Failed to get current exe")
|
tauri::process::current_binary()
|
||||||
|
.expect("Failed to get current binary")
|
||||||
.parent()
|
.parent()
|
||||||
.expect("Failed to get parent dir")
|
.expect("Failed to get parent dir")
|
||||||
.join("opencode-cli")
|
.join("opencode-cli")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue