-
Notifications
You must be signed in to change notification settings - Fork 39
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
Portable shell wrappers #53
Conversation
@markusduffek could you try to make the powershell wrapper also portable like this, and test that it works? Also, is the You can make a commit on top of this branch in your fork and I can cherry-pick it. |
b98857e
to
ba3ee7e
Compare
Tested that this works with both bash & zsh
Tested that this works. A bit confusing because the bin has the same name as the alias, but looks like xonsh handles it fine.
Tested.
I suppose that fish is more well-known
ba3ee7e
to
f2fadf0
Compare
Tested that leaving out the exe works on Windows
Tested with powershell on windows. The "Get-Command -CommandType Application tere" ensures that we refer to tere.exe, and not the alias, so we don't get recursion. Basically equivalent to bash "command tere".
This way it's a bit clearer which instruction belongs to which section
86ba3e9
to
5c84d9e
Compare
Yes, sure. |
Actually, I was able to test this on Windows and I was able to figure it out (see 204e0de) |
Inspired by the discussion in #46.