Extension executed probing sh commands on startup
### Checklist - [ ] I'm using the latest version of the extension ([see the latest version in the right column of this page](https://marketplace.visualstudio.com/items?itemName=GitLab.gitlab-workflow)) - Extension version: 6.78.1 - [ ] I'm using the latest VS Code version ([find the latest version here](https://github.com/microsoft/vscode/releases)) - VS Code version: 1.120.0 - [ ] I'm using a supported version of GitLab ([see README for the supported version](https://gitlab.com/gitlab-org/gitlab-vscode-extension/-/blob/main/README.md#minimum-supported-version)) - GitLab version: _Put your GitLab version here, or say "happens on `gitlab.com`"_ ### Summary After installation extension executes the following commands in the terminal `sh -c echo "WSL=${WSL_DISTRO_NAME:-false}" && echo "SSH=$( [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ] || [ -n "$SSH_CONNECTION" ] && echo true || echo false )" && echo "DOCKER=$( [ -f /.dockerenv ] && echo true || echo false )" && echo "CYGWIN=${CYGWIN:-false}" && echo "MINGW=${MINGW_PREFIX:-${MSYSTEM:-false}}"` `ps -p $$ -o comm=` Tested on MacOS while other extensions were intentionally disabled for testing which one leaves trails in the terminal history. ### Steps to reproduce Install extension Reopen vscode Check console/terminal history ### What is the current _bug_ behavior? Probes system ### What is the expected _correct_ behavior? Does no probing or free sh commands execution in the system terminal ### Relevant logs and/or screenshots ### Possible fixes
issue