We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@greg-kcio encountered a bug when trying to update on Ubuntu. The error is:
No such file or directory (os error 2)
I've attached the strace, but it points to some weird reading of a symlink to the executable itself.
Quickly searching the code, I'm pretty sure it's this line:
// src/cmd_update.rs:30 let current_binary_path = std::env::current_exe()?;
strace.txt
I get the same error on Arch Linux.
The text was updated successfully, but these errors were encountered:
Well I wasn't too far off: issue is actually:
// src/cmd_update.rs:15 if crate::update::is_under_homebrew()? {
Which I've further narrowed to:
let output = std::process::Command::new("brew").args(vec!["--prefix"]).output()?;
Sorry, something went wrong.
lf94
Successfully merging a pull request may close this issue.
@greg-kcio encountered a bug when trying to update on Ubuntu. The error is:
I've attached the strace, but it points to some weird reading of a symlink to the executable itself.
Quickly searching the code, I'm pretty sure it's this line:
strace.txt
I get the same error on Arch Linux.
The text was updated successfully, but these errors were encountered: