-
Notifications
You must be signed in to change notification settings - Fork 57
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
Issues with fetch and PATH #17
Comments
My vote is option 1, using an absolute path for fetch. This way, the user is free to use any other version of fetch that they want. |
Hello @brikis98 . I think the link you posted to provide context is a private link. Maybe I could help on giving my view. |
@spiritus72 Here's the comment in question:
|
bootstrap-gruntwork-installer.sh
installsfetch
into/usr/local/bin
. Depending on the OS and the user (e.g., root), this directory is not always on thePATH
. As a result, the call tofetch
ingruntwork-install
may fail.We should either (1) call
fetch
from an absolute path ingruntwork-install
or (2) installfetch
into something more likely to be on thePATH
, such as/usr/bin
.The text was updated successfully, but these errors were encountered: