-
Notifications
You must be signed in to change notification settings - Fork 4
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
Fix when pkgx is installed by Homebrew on Linux #23
Conversation
let path = "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"; | ||
|
||
// for pkgx installed via homebrew | ||
let homebrewPrefix = ""; | ||
switch (Deno.build.os) { | ||
case "darwin": | ||
homebrewPrefix = "/opt/homebrew"; // /usr/local is already in the path | ||
break; | ||
case "linux": | ||
homebrewPrefix = `/home/linuxbrew/.linuxbrew:${Deno.env.get("HOME")}/.linuxbrew`; | ||
break; | ||
} | ||
if (homebrewPrefix) { | ||
homebrewPrefix = Deno.env.get("HOMEBREW_PREFIX") ?? homebrewPrefix; | ||
path = `${homebrewPrefix}/bin:${path}`; | ||
} | ||
|
||
return path; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it would be slower to use fs.exists()
, but we could just loop an array of paths and add them if they're there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, but I think it still makes sense to only search on some directories conditionally. For example, it doesn't make sense to search for /home/linuxbrew/.linuxbrew
on a macOS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's reasonably correct. if it's present, who knows what it's doing?
No description provided.