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
I'm not sure if I'm doing something wrong but if I add:
{ local-bin-path: ~/bin }
to my config.yaml file, stack path complains that:
config.yaml
stack path
No directory could be located matching the supplied path: ~/bin
Is there any other way to refer to this location with a relative path or something like $HOME?
$HOME
The text was updated successfully, but these errors were encountered:
@unode this works for me:
{ local-bin-path: bin }
Sorry, something went wrong.
@cheecheeo it doesn't work for me.
If I set it up like you mentioned it becomes relative to the current path. It only works if I'm on ~/ when I run stack install which is hardly ever.
~/
stack install
I think this issue would already be solved with #1375.
The issue with tildes (~) is that they are AFAIK legal filenames in their own right, so it's never clear whether ~/x refers to $HOME/x or $PWD/~/x.
~
~/x
$HOME/x
$PWD/~/x
I'm closing this in favor of #1375 but feel free to reopen this if you would like to discuss this further.
No branches or pull requests
I'm not sure if I'm doing something wrong but if I add:
to my
config.yaml
file,stack path
complains that:Is there any other way to refer to this location with a relative path or something like
$HOME
?The text was updated successfully, but these errors were encountered: