You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the default behavior in the Remote - Containers case (and likely in others) is to drop to sh because the $SHELL environment variable is not set.
We've updated dev container definitions to set this environment variable to bash, but a better way is to get the default shell for the current user via /etc/passwd instead.
This likely affects SSH and WSL in some cases as well, but it is most obvious in the containers case due to how images are typically set up.
The text was updated successfully, but these errors were encountered:
Right now the default behavior in the Remote - Containers case (and likely in others) is to drop to
sh
because the$SHELL
environment variable is not set.We've updated dev container definitions to set this environment variable to bash, but a better way is to get the default shell for the current user via /etc/passwd instead.
This likely affects SSH and WSL in some cases as well, but it is most obvious in the containers case due to how images are typically set up.
The text was updated successfully, but these errors were encountered: