1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-20 01:28:56 +00:00

fix: incorrect powershell alias instruction

This commit is contained in:
Simon Chan 2019-10-31 15:49:29 +08:00 committed by GitHub
parent 70b414aca2
commit 76fa248c51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ class Powershell(Generic):
def how_to_configure(self): def how_to_configure(self):
return ShellConfiguration( return ShellConfiguration(
content=u'iex "thefuck --alias"', content=u'iex "$(thefuck --alias)"',
path='$profile', path='$profile',
reload='& $profile', reload='& $profile',
can_configure_automatically=False) can_configure_automatically=False)