From 0296983a28b181654d4b433bdab762f2b3aba93a Mon Sep 17 00:00:00 2001 From: John Meyer <20781397+0x326@users.noreply.github.com> Date: Mon, 18 Jul 2022 15:37:31 -0400 Subject: [PATCH] WSL: do not load PowerShell profile (#190) --- git-open | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-open b/git-open index 1fcc655..6412b8c 100755 --- a/git-open +++ b/git-open @@ -257,7 +257,7 @@ case $( uname -s ) in CYGWIN*) open='cygstart';; *) # Try to detect WSL (Windows Subsystem for Linux) if uname -r | grep -q -i Microsoft; then - open='powershell.exe Start' + open='powershell.exe -NoProfile Start' else open='xdg-open' fi;;