Skip to content
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

expand tilde to home in pathnames #161

Open
daxim opened this issue May 11, 2017 · 8 comments
Open

expand tilde to home in pathnames #161

daxim opened this issue May 11, 2017 · 8 comments

Comments

@daxim
Copy link

daxim commented May 11, 2017

--install-to=~/local/share/perl6 treats the tilde as literal character, making it a pathname relative to the current directory. That's running counter to rule of least surprise. To fix this, either

  • conform to getopt_long and allow options to be supplied in the form without equal character, thus: --install-to ~/local/share/perl6 so that the shell takes care of expanding the tilde
  • or call glob(3) on the pathname in order to expand the tilde
@ugexe
Copy link
Owner

ugexe commented May 11, 2017

Maybe you should file a bug about least surprise to rakudo about issues you have with tilde expansion.

@Leont
Copy link
Contributor

Leont commented Aug 18, 2017

Having a sensible implementation of ~/ should be trivial. Replacing ~/ with %*ENV<HOME> on uix, and %*ENV<USER_PROFILE> on Windows should do the trick.

@AlexDaniel
Copy link
Contributor

Wait, why? ~ is a thing in shells, zef is not a shell. If I wanted to install into ~ directory (yes, directory named ~) then I'd expect zef to do what I told it to do, not to reinterpret the path in weird shell ways.

@tony-o
Copy link
Collaborator

tony-o commented Aug 23, 2018

++@AlexDaniel, that sounds like an upstream feature request

@Leont
Copy link
Contributor

Leont commented Aug 25, 2018

Wait, why? ~ is a thing in shells, zef is not a shell. If I wanted to install into ~ directory (yes, directory named ~) then I'd expect zef to do what I told it to do, not to reinterpret the path in weird shell ways.

Because it's useful, and a lot of people will expect it.

This would not be necessary if perl6 took arguments like «--install-to ~/local/share/perl6», but sadly it doesn't by default.

@AlexDaniel
Copy link
Contributor

@Leont but you can use $HOME env variable, and you can even hit C-M-e in bash to expand it right away.

Zef should not mangle arguments. I doubt any proper tool in existence does that.

@Leont
Copy link
Contributor

Leont commented Aug 29, 2018

I doubt any proper tool in existence does that.

Proper makes it a no true scotsman argument, but I have maintained tools that did this (e.g. Module::Build

@AlexDaniel
Copy link
Contributor

AlexDaniel commented Aug 30, 2018

Proper makes it a no true scotsman argument, but I have maintained tools that did this

Correct. But I'm more interested in seeing their justification (if there is any, which I originally doubted, so that we wouldn't need to do bikeshedding ourselves) than playing fallacy games. From the ticket for Module::Build:

perl Build.PL --install_base=~ causes everything to be installed into a subdirectory literally called '~'. Even though this is not technically Module::Build's fault, its the shell, its very surprising and very dangerous as a user will instinctively do "rm -rf ~" and blow away their home directory. I nearly did so.

That's interesting. I don't know if --install-to=~ reasoning can be applied here though.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants