From 57670429642e1cc9ef0e8dd79c6627f5b6e05fe9 Mon Sep 17 00:00:00 2001 From: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Thu, 16 Jan 2025 18:28:52 +0100 Subject: [PATCH] fix(engines): correct engine detection on unix The `current_exe` function doesn't return the symlinked path on Unix, so the engine detection was failing there. This commit fixes that by using the 0th argument of the program to get the path of the executable on Unix. --- src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.rs b/src/main.rs index c9592ae..f6bf023 100644 --- a/src/main.rs +++ b/src/main.rs @@ -137,6 +137,10 @@ impl<'a> MakeWriter<'a> for IndicatifWriter { async fn run() -> anyhow::Result<()> { let cwd = std::env::current_dir().expect("failed to get current working directory"); + // Unix doesn't return the symlinked path, so we need to get it from the 0 argument + #[cfg(unix)] + let current_exe = PathBuf::from(std::env::args_os().next().expect("argument 0 not set")); + #[cfg(not(unix))] let current_exe = std::env::current_exe().expect("failed to get current executable path"); let exe_name = current_exe .file_stem()