1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 06:38:32 +00:00

fix: use dot operator to reload powershell profile

This commit is contained in:
Simon Chan 2019-10-31 16:12:25 +08:00 committed by GitHub
parent 76fa248c51
commit f6d910254e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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