-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to switch back from sh to bash? #350
Comments
@nphmuller I noticed from the last couple of updates that VSCode will now respect the default shell of whatever environment you're running the remote in. If the container you're running the remote VSCode server in has You can put the setting -- edit -- For reference, issue #38 fixed the default terminal. |
Thanks @pd93 |
The other way to fix this is to add a SHELL env var into your Dockerfile. ENV SHELL /bin/bash I just added these to all of the vscode-dev-containers base definitions going forward. |
node:lts
Docker image)Since the latest insider release, the default terminal has switched from bash to sh.
Was this an intentional change? Can I change this back to bash somehow? I think bash is much user friendlier (tab completion doesn't work properly, current directory not showing, etc). Or did this happen because of the container image I use, which VSCode now respects better?
The text was updated successfully, but these errors were encountered: