mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-04 19:00:56 +01:00
fix(engines): correct engine detection on unix
Some checks failed
Debug / Get build version (push) Has been cancelled
Test & Lint / lint (push) Has been cancelled
Debug / Build for linux-x86_64 (push) Has been cancelled
Debug / Build for macos-aarch64 (push) Has been cancelled
Debug / Build for macos-x86_64 (push) Has been cancelled
Debug / Build for windows-x86_64 (push) Has been cancelled
Some checks failed
Debug / Get build version (push) Has been cancelled
Test & Lint / lint (push) Has been cancelled
Debug / Build for linux-x86_64 (push) Has been cancelled
Debug / Build for macos-aarch64 (push) Has been cancelled
Debug / Build for macos-x86_64 (push) Has been cancelled
Debug / Build for windows-x86_64 (push) Has been cancelled
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.
This commit is contained in:
parent
b51c9d9571
commit
5767042964
1 changed files with 4 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue