From ea62c477e74e99a0a21f17e4c1128725c6dbf37a Mon Sep 17 00:00:00 2001 From: John Meyer <20781397+0x326@users.noreply.github.com> Date: Mon, 18 Jul 2022 08:47:50 -0500 Subject: [PATCH] Do not load PowerShell profile --- 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;;