-
Notifications
You must be signed in to change notification settings - Fork 43
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
--to ~/bin does not install to $HOME/bin/ #74
Comments
Yeah, this seems to be because the shell is not expanding It works for me if you ditch the |
Is there a way for go to expand paths? |
Something like this could work: https://stackoverflow.com/a/17617721 But, I don't really think this is high value, because such expansions should ideally be handled by the shell. |
We already have the internal |
For example I tried
eget svenstaro/miniserve --to=~/bin
expecting miniserve to be installed into thebin
folder in $HOME but rather it created a~
folder in the current directory and renamed miniserve to bin. This is not expected at all since help specifies:--to= move to given location after extracting
. meaning move the executable to that folder.The text was updated successfully, but these errors were encountered: