Skip to content

bskiser/fix linux qchat path #1840

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 25 additions & 11 deletions crates/q_cli/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ use std::io::{
Write as _,
stdout,
};
use std::path::PathBuf;
use std::process::ExitCode;

use anstream::{
Expand Down Expand Up @@ -57,15 +58,13 @@ use fig_proto::local::UiElement;
use fig_settings::sqlite::database;
use fig_util::directories::home_local_bin;
use fig_util::{
CHAT_BINARY_NAME,
CLI_BINARY_NAME,
PRODUCT_NAME,
directories,
manifest,
system_info,
};
use internal::InternalSubcommand;
use macos_utils::bundle::get_bundle_path_for_executable;
use serde::Serialize;
use tokio::signal::ctrl_c;
use tracing::{
Expand Down Expand Up @@ -376,14 +375,6 @@ impl Cli {
}

pub async fn execute_chat(subcmd: &str, args: Option<Vec<String>>, enforce_login: bool) -> Result<ExitCode> {
cfg_if::cfg_if! {
if #[cfg(target_os = "macos")] {
let path = get_bundle_path_for_executable(CHAT_BINARY_NAME).unwrap_or(home_local_bin()?.join(CHAT_BINARY_NAME));
} else {
let path = home_local_bin()?.join(CHAT_BINARY_NAME);
}
}

if enforce_login {
assert_logged_in().await?;
}
Expand All @@ -399,7 +390,7 @@ impl Cli {
}
}

let mut cmd = tokio::process::Command::new(&path);
let mut cmd = tokio::process::Command::new(qchat_path()?);
cmd.arg(subcmd);
if let Some(args) = args {
cmd.args(args);
Expand Down Expand Up @@ -557,6 +548,29 @@ async fn launch_dashboard(help_fallback: bool) -> Result<ExitCode> {
Ok(ExitCode::SUCCESS)
}

#[cfg(target_os = "linux")]
fn qchat_path() -> Result<PathBuf> {
use fig_os_shim::Context;
use fig_util::consts::CHAT_BINARY_NAME;

let ctx = Context::new();
if let Some(path) = ctx.process_info().current_pid().exe() {
// This is required for deb installations.
if path.starts_with("/usr/bin") {
return Ok(PathBuf::from("/usr/bin").join(CHAT_BINARY_NAME));
}
}
Ok(home_local_bin()?.join(CHAT_BINARY_NAME))
}

#[cfg(target_os = "macos")]
fn qchat_path() -> Result<PathBuf> {
use fig_util::consts::CHAT_BINARY_NAME;
use macos_utils::bundle::get_bundle_path_for_executable;

Ok(get_bundle_path_for_executable(CHAT_BINARY_NAME).unwrap_or(home_local_bin()?.join(CHAT_BINARY_NAME)))
}

#[cfg(test)]
mod test {
use super::*;
Expand Down
Loading