Skip to content

Commit 862bef8

Browse files
authored
Update remoteProcessPickerScript windows ssh exit
On windows vscode using the openssh client the command does not exit by default which does not allow vscode to prompt available processes to the user. This continues to work on linux despite redundant exit command.
1 parent b2f1515 commit 862bef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/remoteProcessPickerScript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
uname && if [ "$(uname)" = "Linux" ] ; then ps -axww -o pid=,comm=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,args= ; elif [ "$(uname)" = "Darwin" ] ; then ps -axww -o pid=,comm=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,args= -c; fi
1+
uname && if [ "$(uname)" = "Linux" ] ; then ps -axww -o pid=,comm=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,args= ; exit; elif [ "$(uname)" = "Darwin" ] ; then ps -axww -o pid=,comm=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,args= -c; fi

0 commit comments

Comments
 (0)